Skip to content

Commit

Permalink
Translated to Romanian
Browse files Browse the repository at this point in the history
  • Loading branch information
catalintopala committed Mar 15, 2021
1 parent b57bfe6 commit 818f64a
Show file tree
Hide file tree
Showing 4 changed files with 903 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ returns an [array with questions and choices](examples/items-en.json)
| he | Hebew | Ben Perry |
| pl | Polish | Maryla Królikowska |
| ko | Korean | [TimeTREE](https://github.com/TimeTREE98) |
| ro | Romanian | [Cătălin Topală](https://github.com/catalintopala)


## Help wanted
Expand Down
4 changes: 4 additions & 0 deletions data/languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@
"id": "nl",
"text": "Dutch"
},
{
"id": "ro",
"text": "Romanian"
},
{
"id": "sq",
"text": "Albanian"
Expand Down
56 changes: 56 additions & 0 deletions data/ro/choices.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
module.exports = {
plus: [
{
text: 'Dezacord total',
score: 1,
color: 1
},
{
text: 'Dezacord',
score: 2,
color: 2
},
{
text: 'Nici acord, nici dezacord',
score: 3,
color: 3
},
{
text: 'Acord',
score: 4,
color: 4
},
{
text: 'Acord total',
score: 5,
color: 5
}
],
minus: [
{
text: 'Dezacord total',
score: 5,
color: 1
},
{
text: 'Dezacord',
score: 4,
color: 2
},
{
text: 'Nici acord, nici dezacord',
score: 3,
color: 3
},
{
text: 'Acord',
score: 2,
color: 4
},
{
text: 'Acord total',
score: 1,
color: 5
}
]
}
Loading

0 comments on commit 818f64a

Please sign in to comment.