Skip to content

Commit

Permalink
Adds Korean
Browse files Browse the repository at this point in the history
  • Loading branch information
TimeTREE98 committed Dec 12, 2020
1 parent 1f8ee64 commit 5c56f01
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 @@ -100,6 +100,7 @@ returns an [array with questions and choices](examples/items-en.json)
| ar | Arabic | Rayan Khan |
| he | Hebew | Ben Perry |
| pl | Polish | Maryla Królikowska |
| ko | Korean | [TimeTREE](https://github.com/TimeTREE98) |


## Help wanted
Expand Down
56 changes: 56 additions & 0 deletions data/ko/choices.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
module.exports = {
plus: [
{
text: '매우 그렇지 않다',
score: 1,
color: 1
},
{
text: '그렇지 않다',
score: 2,
color: 2
},
{
text: '보통이다',
score: 3,
color: 3
},
{
text: '그렇다',
score: 4,
color: 4
},
{
text: '매우 그렇다',
score: 5,
color: 5
}
],
minus: [
{
text: '매우 그렇지 않다',
score: 5,
color: 1
},
{
text: '그렇지 않다',
score: 4,
color: 2
},
{
text: '보통이다',
score: 3,
color: 3
},
{
text: '그렇다',
score: 2,
color: 4
},
{
text: '매우 그렇다',
score: 1,
color: 5
}
]
}
Loading

0 comments on commit 5c56f01

Please sign in to comment.