forked from rcdexta/react-trello
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request rcdexta#524 from rubensflinco/master
Create translation pt-br
- Loading branch information
Showing
3 changed files
with
22 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
// i18next support structure | ||
|
||
export default { | ||
en: { | ||
"en": { | ||
translation: require('./en/translation.json') | ||
}, | ||
ru: { | ||
"ru": { | ||
translation: require('./ru/translation.json') | ||
}, | ||
"pt-br": { | ||
translation: require('./pt-br/translation.json') | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"Add another lane": "+ Adicionar outra coluna", | ||
"Click to add card": "Clique para adicionar um cartão", | ||
"Delete lane": "Deletar coluna", | ||
"Lane actions": "Ações da coluna", | ||
"button": { | ||
"Add lane": "Adicionar coluna", | ||
"Add card": "Adicionar cartão", | ||
"Cancel": "Cancelar" | ||
}, | ||
"placeholder": { | ||
"title": "título", | ||
"description": "descrição", | ||
"label": "etiqueta" | ||
} | ||
} |