Skip to content

Commit

Permalink
Merge 590b0d0 into 398b175
Browse files Browse the repository at this point in the history
  • Loading branch information
MatheusMuriel committed Oct 17, 2018
2 parents 398b175 + 590b0d0 commit 661dc74
Show file tree
Hide file tree
Showing 9 changed files with 379 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,6 @@ typings/
# Lock files
package-lock.json

#Visual studio
.vs
.vs/
3 changes: 3 additions & 0 deletions .vs/ProjectSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"CurrentProjectSetting": null
}
9 changes: 9 additions & 0 deletions .vs/VSWorkspaceState.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"ExpandedNodes": [
"",
"\\data",
"\\data\\pt-br"
],
"SelectedNode": "\\README.md",
"PreviewInSolutionExplorer": false
}
Binary file added .vs/b5-50-ipip-neo-pi-r/v15/.suo
Binary file not shown.
Binary file added .vs/slnx.sqlite
Binary file not shown.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,10 @@ returns an [array with questions and choices](examples/items-en.json)

## Supported languages

| Code | Name | Translator |
| ---- | --------- | ---------- |
| en | English | |
| Code | Name | Translator |
| ---- | --------------------- | ------------- |
| en | English | |
| pt-br| Portugues Brasileiro | Matheus Muriel| (Required semantic review)

## Help wanted

Expand Down
3 changes: 2 additions & 1 deletion data/languages.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[
"en"
"en",
"pt-br"
]
56 changes: 56 additions & 0 deletions data/pt-br/choices.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
module.exports = {
plus: [
{
text: 'Muito Impreciso',
score: 1,
color: 1
},
{
text: 'Moderadamente Impreciso',
score: 2,
color: 2
},
{
text: 'Nem Preciso Nem Impreciso',
score: 3,
color: 3
},
{
text: 'Moderadamente Preciso',
score: 4,
color: 4
},
{
text: 'Muito Preciso',
score: 5,
color: 5
}
],
minus: [
{
text: 'Muito Impreciso',
score: 5,
color: 1
},
{
text: 'Moderadamente Impreciso',
score: 4,
color: 2
},
{
text: 'Nem Preciso nem Impreciso',
score: 3,
color: 3
},
{
text: 'Moderadamente Preciso',
score: 2,
color: 4
},
{
text: 'Muito Preciso',
score: 1,
color: 5
}
]
}

0 comments on commit 661dc74

Please sign in to comment.