Skip to content

Commit

Permalink
feat(locale): Support Portuguese interface and webstore description (#64
Browse files Browse the repository at this point in the history
)

* feat(locale): add Portuguese locale

* add webstore description in Portuguese — machine translation

* add webstore screenshot in Portuguese
  • Loading branch information
troggy authored Nov 28, 2019
1 parent 880d236 commit e78d338
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 14 deletions.
28 changes: 15 additions & 13 deletions resources/webstore/description.pt.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
This extension allows you to download your words from the LinguaLeo dictionary as CSV file. The file is ready for import to Anki.
Esta extensão permite-lhe descarregar as suas palavras do dicionário LinguaLeo como ficheiro CSV. O ficheiro está pronto para ser importado para a Anki.

Once added, you should see "Export" button on all the dictionary pages.
Works for all the wordsets and supports all the build-in Lingualeo filtering.
Uma vez adicionado, você deve ver o botão "Exportar" em todas as páginas do dicionário.
Funciona para todos os conjuntos de palavras e suporta toda a filtragem Lingualeo integrada.

Downloaded for each word:
- translation
- link to the picture
- transcription
- example of use (context)
- link to mp3 file with pronunciation
- sets of words in which the word enters
- example of use (context) for cloze cards
Descarregado para cada palavra:
- tradução
- link para a foto
- transcrição
- exemplo de utilização (contexto)
- link para arquivo mp3 com pronúncia
- conjuntos de palavras em que a palavra entra
- exemplo de uso (contexto) para cartões cloze

Source code: https://github.com/troggy/anki-leo
Report errors: open a github issue (preferrable) or ping me by email or on Telegram (https://t.me/troggy)
Código fonte: https://github.com/troggy/anki-leo
Reportar erros: abrir um problema de github (preferencialmente) ou pingar-me por e-mail ou no Telegram (https://t.me/troggy)

Traduzido com a versão gratuita do tradutor - www.DeepL.com/Translator
Binary file added resources/webstore/screen-1280x800.pt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions src/_locales/pt/messages.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"manifest_name": {
"message": "Anki-leo - Exportação do dicionário LinguaLeo",
"description": ""
},
"manifest_description": {
"message": "Exporte seu dicionário Lingualeo para um arquivo CSV compatível com Anki",
"description": ""
},
"web_btn_export": {
"message": "Exportação",
"description": ""
},
"web_btn_all": {
"message": "Todas",
"description": ""
},
"web_btn_learning": {
"message": "Estudadas",
"description": ""
},
"web_btn_selected": {
"message": "Selecionadas",
"description": ""
},
"web_msg_progress": {
"message": "🔄 {done} de {total}",
"description": ""
},
"web_msg_done_nothing": {
"message": "✅ Nada a exportar",
"description": ""
}
}
3 changes: 2 additions & 1 deletion src/js/locale.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ const messages = {
en: require('./locales/en/messages.json'),
ru: require('./locales/ru/messages.json'),
es: require('./locales/es/messages.json'),
tr: require('./locales/tr/messages.json')
tr: require('./locales/tr/messages.json'),
pt: require('./locales/pt/messages.json')
}

export default class Locale {
Expand Down

0 comments on commit e78d338

Please sign in to comment.