-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
localization: add full localization (#126)
- Loading branch information
1 parent
7ddbd1a
commit 0733c20
Showing
30 changed files
with
683 additions
and
105 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ | |
.history | ||
.svn/ | ||
migrate_working_dir/ | ||
i18n_untranslated.json | ||
|
||
# IntelliJ related | ||
*.iml | ||
|
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,3 +1,6 @@ | ||
arb-dir: lib/src/localization | ||
template-arb-file: app_en.arb | ||
nullable-getter: false | ||
output-localization-file: app_localizations.dart | ||
template-arb-file: app_en.arb | ||
untranslated-messages-file: i18n_untranslated.json | ||
use-escaping: true |
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"@@locale": "cs", | ||
"@@comment": "(c) searchwork.org", | ||
"appTitle": "Čtení NWT", | ||
"plansPageTitle": "Plány čtení Bible", | ||
"plansPageNoPlanYet": "Zatím žádný plán čtení Bible. Přidej jeden.", | ||
"plansPageAddPlanTooltip": "Přidat", | ||
"plansPageCardRemainingDays": "{remainingDays}d", | ||
"schedulePageJumpToBookmarkTooltip": "Přejít na záložku", | ||
"schedulePageEventCommonEraTerm": "{isCE, select, true{n. l.} other{př. n. l.}}", | ||
"schedulePageToggleReadDialogTitle": "Přepínání čtení", | ||
"schedulePageToggleReadDialogText": "Chceš označit všechny předchozí sekce jako přečtené a všechny následující jako nepřečtené?", | ||
"planEditPageTitle": "Upravit plán", | ||
"planEditPageChronologicalLabel": "chronologicky", | ||
"planEditPageSequentialLabel": "sekvenčně", | ||
"planEditPageAsWrittenLabel": "jak je napsáno", | ||
"planEditPageThreeMonthsLabel": "3 měsíce", | ||
"planEditPageSixMonthsLabel": "6 měsíců", | ||
"planEditPageOneYearLabel": "1 rok", | ||
"planEditPageTwoYearsLabel": "2 roky", | ||
"planEditPageFourYearsLabel": "4 roky", | ||
"planEditPageLanguageLabel": "Jazyk", | ||
"planEditPageWithTargetDateTitle": "S cílovým datem", | ||
"planEditPageWithTargetDateSubtitle": "Sleduj denní čtení s cílovým datem.", | ||
"planEditPageWithTargetDateStatusSubtitle": "Cílové datum je {targetDate}. Jsi {direction, select, other{v plánu} ahead{{deviationDays} dní napřed} behind{{deviationDays} dní pozadu}} s čtením.", | ||
"planEditPageResetTargetDateTitle": "Resetovat cílové datum", | ||
"planEditPageResetTargetDateSubtitle": "Změň cílové datum na {targetDate}, aby ses držel plánu čtení.", | ||
"planEditPageResetTargetDateDialogTitle": "Potvrdit resetování cílového data", | ||
"planEditPageResetTargetDateDialogText": "Chceš změnit cílové datum, aby ses držel plánu čtení?", | ||
"planEditPageShowEventsTitle": "Zobrazit události", | ||
"planEditPageShowEventsSubtitle": "Zobraz v sekcích události s daty, kdy se staly.", | ||
"planEditPageShowLocationsTitle": "Zobrazit místa", | ||
"planEditPageShowLocationsSubtitle": "Zobraz v sekcích zmíněná místa.", | ||
"settingsPageTitle": "Nastavení", | ||
"settingsPageSystemLabel": "systém", | ||
"settingsPageLightLabel": "světlý", | ||
"settingsPageDarkLabel": "tmavý", | ||
"settingsPageVersionLabel": "Verze", | ||
"settingsPageCopyrightLabel": "Autorská práva" | ||
} |
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,11 +1,40 @@ | ||
{ | ||
"appTitle": "NWT Reading", | ||
"planEditPageTitle": "Editiere Plan", | ||
"@planEditPageTitle": { | ||
"description": "Der Titel der editiere Plan Seite" | ||
}, | ||
"plansPageTitle": "Biblelese-Pläne", | ||
"noPlanYet": "Noch kein Bibelleseplan da. Füge einen hinzu.", | ||
"addPlanTooltip": "Hinzufügen", | ||
"goToBookmarkTooltip": "Springe zum Lesezeichen" | ||
"@@locale": "de", | ||
"@@comment": "(c) searchwork.org", | ||
"appTitle": "NWT Lesen", | ||
"plansPageTitle": "Bibel-Lesepläne", | ||
"plansPageNoPlanYet": "Noch kein Bibel-Leseplan. Füge einen hinzu.", | ||
"plansPageAddPlanTooltip": "Hinzufügen", | ||
"plansPageCardRemainingDays": "{remainingDays}T", | ||
"schedulePageJumpToBookmarkTooltip": "Springe zum Lesezeichen", | ||
"schedulePageEventCommonEraTerm": "{isCE, select, true{u. Z.} other{v. u. Z.}}", | ||
"schedulePageToggleReadDialogTitle": "Lesestatus ändern", | ||
"schedulePageToggleReadDialogText": "Möchtest du alle vorherigen Abschnitte als gelesen und alle folgenden als ungelesen markieren?", | ||
"planEditPageTitle": "Plan bearbeiten", | ||
"planEditPageChronologicalLabel": "chronologisch", | ||
"planEditPageSequentialLabel": "sequenziell", | ||
"planEditPageAsWrittenLabel": "wie geschrieben", | ||
"planEditPageThreeMonthsLabel": "3 Monate", | ||
"planEditPageSixMonthsLabel": "6 Monate", | ||
"planEditPageOneYearLabel": "1 Jahr", | ||
"planEditPageTwoYearsLabel": "2 Jahre", | ||
"planEditPageFourYearsLabel": "4 Jahre", | ||
"planEditPageLanguageLabel": "Sprache", | ||
"planEditPageWithTargetDateTitle": "Mit Zieltermin", | ||
"planEditPageWithTargetDateSubtitle": "Verfolge das tägliche Lesen mit einem Zieltermin.", | ||
"planEditPageWithTargetDateStatusSubtitle": "Der Zieltermin ist {targetDate}. Du bist {direction, select, other{im Zeitplan} ahead{{deviationDays} Tage voraus} behind{{deviationDays} Tage im Rückstand}} mit dem Lesen.", | ||
"planEditPageResetTargetDateTitle": "Zieltermin zurücksetzen", | ||
"planEditPageResetTargetDateSubtitle": "Ändere den Zieltermin auf {targetDate}, um im Zeitplan zu sein.", | ||
"planEditPageResetTargetDateDialogTitle": "Zurücksetzen des Zieltermins bestätigen", | ||
"planEditPageResetTargetDateDialogText": "Möchtest du den Zieltermin ändern, um im Zeitplan zu sein?", | ||
"planEditPageShowEventsTitle": "Ereignisse anzeigen", | ||
"planEditPageShowEventsSubtitle": "Zeige in den Abschnitten Ereignisse mit Daten an, wann sie passiert sind.", | ||
"planEditPageShowLocationsTitle": "Orte anzeigen", | ||
"planEditPageShowLocationsSubtitle": "Zeige in den Abschnitten die erwähnten Orte an.", | ||
"settingsPageTitle": "Einstellungen", | ||
"settingsPageSystemLabel": "System", | ||
"settingsPageLightLabel": "Hell", | ||
"settingsPageDarkLabel": "Dunkel", | ||
"settingsPageVersionLabel": "Version", | ||
"settingsPageCopyrightLabel": "Urheberrecht" | ||
} |
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,17 +1,174 @@ | ||
{ | ||
"@@locale": "en", | ||
"@@comment": "(c) searchwork.org", | ||
"appTitle": "NWT Reading", | ||
"@appTitle": { | ||
"description": "The title of the application" | ||
}, | ||
"planEditPageTitle": "Edit Plan", | ||
"@planEditPageTitle": { | ||
"description": "The title of the edit plan page" | ||
}, | ||
"plansPageTitle": "Bible Reading Plans", | ||
"@plansPageTitle": { | ||
"description": "The title of the plans page" | ||
}, | ||
"noPlanYet": "No Bible reading plan yet. Try adding one.", | ||
"addPlanTooltip": "Add", | ||
"goToBookmarkTooltip": "Jump to bookmark" | ||
"plansPageNoPlanYet": "No Bible reading plan yet. Add one.", | ||
"@plansPageNoPlanYet": { | ||
"description": "The message on the plans page when there is no plan yet" | ||
}, | ||
"plansPageAddPlanTooltip": "Add", | ||
"@plansPageAddPlanTooltip": { | ||
"description": "The tooltip on the add plan button on the plans page" | ||
}, | ||
"plansPageCardRemainingDays": "{remainingDays}d", | ||
"@plansPageCardRemainingDays": { | ||
"description": "Displaying the remaining days on the card (number of days with a suffix d as abbreviation for days)", | ||
"placeholders": { | ||
"remainingDays": { | ||
"type": "num" | ||
} | ||
} | ||
}, | ||
"schedulePageJumpToBookmarkTooltip": "Jump to bookmark", | ||
"@schedulePageJumpToBookmarkTooltip": { | ||
"description": "The tooltip on the jump to bookmark button on the schedule page" | ||
}, | ||
"schedulePageEventCommonEraTerm": "{isCE, select, true{C.E.} other{B.C.E}}", | ||
"@schedulePageEventCommonEraTerm": { | ||
"description": "The common era term in the events on the schedule page.", | ||
"placeholders": { | ||
"isCE": { | ||
"type": "String" | ||
} | ||
} | ||
}, | ||
"schedulePageToggleReadDialogTitle": "Toggling read", | ||
"@schedulePageToggleReadDialogTitle": { | ||
"description": "The title on the toggle read confirmation dialog on the schedule page" | ||
}, | ||
"schedulePageToggleReadDialogText": "Do you want to set all prior sections as been read and all following to unread?", | ||
"@schedulePageToggleReadDialogText": { | ||
"description": "The text on the toggle read confirmation dialog on the schedule page" | ||
}, | ||
"planEditPageTitle": "Edit Plan", | ||
"@planEditPageTitle": { | ||
"description": "The title of the plan edit page" | ||
}, | ||
"planEditPageChronologicalLabel": "chronological", | ||
"@planEditPageChronologicalLabel": { | ||
"description": "The chronological segment label on the plan edit page" | ||
}, | ||
"planEditPageSequentialLabel": "sequential", | ||
"@planEditPageSequentialLabel": { | ||
"description": "The sequential segment label on the plan edit page" | ||
}, | ||
"planEditPageAsWrittenLabel": "as written", | ||
"@planEditPageAsWrittenLabel": { | ||
"description": "The as written segment label on the plan edit page" | ||
}, | ||
"planEditPageThreeMonthsLabel": "3 months", | ||
"@planEditPageThreeMonthsLabel": { | ||
"description": "The three months segment label on the plan edit page" | ||
}, | ||
"planEditPageSixMonthsLabel": "6 months", | ||
"@planEditPageSixMonthsLabel": { | ||
"description": "The six months segment label on the plan edit page" | ||
}, | ||
"planEditPageOneYearLabel": "1 year", | ||
"@planEditPageOneYearLabel": { | ||
"description": "The one year segment label on the plan edit page" | ||
}, | ||
"planEditPageTwoYearsLabel": "2 years", | ||
"@planEditPageTwoYearsLabel": { | ||
"description": "The two years segment label on the plan edit page" | ||
}, | ||
"planEditPageFourYearsLabel": "4 years", | ||
"@planEditPageFourYearsLabel": { | ||
"description": "The four years segment label on the plan edit page" | ||
}, | ||
"planEditPageLanguageLabel": "Language", | ||
"@planEditPageLanguageLabel": { | ||
"description": "The language label on the plan edit page" | ||
}, | ||
"planEditPageWithTargetDateTitle": "With Target Date", | ||
"@planEditPageWithTargetDateTitle": { | ||
"description": "The with target date title on the plan edit page" | ||
}, | ||
"planEditPageWithTargetDateSubtitle": "Track daily reading with a target date.", | ||
"@planEditPageWithTargetDateSubtitle": { | ||
"description": "The with target date subtitle on the plan edit page" | ||
}, | ||
"planEditPageWithTargetDateStatusSubtitle": "The target date is {targetDate}. You are {direction, select, other{on time} ahead{{deviationDays} days ahead} behind{{deviationDays} days behind}} with reading.", | ||
"@planEditPageWithTargetDateStatusSubtitle": { | ||
"description": "The with target date status subtitle on the plan edit page", | ||
"placeholders": { | ||
"targetDate": { | ||
"type": "String" | ||
}, | ||
"direction": { | ||
"type": "String" | ||
}, | ||
"deviationDays": { | ||
"type": "num" | ||
} | ||
} | ||
}, | ||
"planEditPageResetTargetDateTitle": "Reset Target Date", | ||
"@planEditPageResetTargetDateTitle": { | ||
"description": "The reset target date title on the plan edit page" | ||
}, | ||
"planEditPageResetTargetDateSubtitle": "Change target date to {targetDate} to be on time with reading.", | ||
"@planEditPageResetTargetDateSubtitle": { | ||
"description": "The reset target date subtitle on the plan edit page", | ||
"placeholders": { | ||
"targetDate": { | ||
"type": "String" | ||
} | ||
} | ||
}, | ||
"planEditPageResetTargetDateDialogTitle": "Confirm resetting target date", | ||
"@planEditPageResetTargetDateDialogTitle": { | ||
"description": "The title on the reset target date confirmation dialog on the plan edit page" | ||
}, | ||
"planEditPageResetTargetDateDialogText": "Do you want to change the target date to be on time with reading?", | ||
"@planEditPageResetTargetDateDialogText": { | ||
"description": "The text on the reset target date confirmation dialog on the plan edit page" | ||
}, | ||
"planEditPageShowEventsTitle": "Show Events", | ||
"@planEditPageShowEventsTitle": { | ||
"description": "The show events title on the plan edit page" | ||
}, | ||
"planEditPageShowEventsSubtitle": "Show in the sections events with dates, when they happened.", | ||
"@planEditPageShowEventsSubtitle": { | ||
"description": "The show events subtitle on the plan edit page" | ||
}, | ||
"planEditPageShowLocationsTitle": "Show Locations", | ||
"@planEditPageShowLocationsTitle": { | ||
"description": "The show locations title on the plan edit page" | ||
}, | ||
"planEditPageShowLocationsSubtitle": "Show in the sections the referred locations.", | ||
"@planEditPageShowLocationsSubtitle": { | ||
"description": "The show locations subtitle on the plan edit page" | ||
}, | ||
"settingsPageTitle": "Settings", | ||
"@settingsPageTitle": { | ||
"description": "The title of the settings page" | ||
}, | ||
"settingsPageSystemLabel": "system", | ||
"@settingsPageSystemLabel": { | ||
"description": "The system segment label on the settings page" | ||
}, | ||
"settingsPageLightLabel": "light", | ||
"@settingsPageLightLabel": { | ||
"description": "The light segment label on the settings page" | ||
}, | ||
"settingsPageDarkLabel": "dark", | ||
"@settingsPageDarkLabel": { | ||
"description": "The dark segment label on the settings page" | ||
}, | ||
"settingsPageVersionLabel": "Version", | ||
"@settingsPageVersionLabel": { | ||
"description": "The version label on the settings page" | ||
}, | ||
"settingsPageCopyrightLabel": "Copyright", | ||
"@settingsPageCopyrightLabel": { | ||
"description": "The copyright label on the settings page" | ||
} | ||
} |
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,40 @@ | ||
{ | ||
"@@locale": "es", | ||
"@@comment": "(c) searchwork.org", | ||
"appTitle": "Lectura NWT", | ||
"plansPageTitle": "Planes de Lectura de la Biblia", | ||
"plansPageNoPlanYet": "Aún no hay un plan de lectura de la Biblia. Añade uno.", | ||
"plansPageAddPlanTooltip": "Añadir", | ||
"plansPageCardRemainingDays": "{remainingDays}d", | ||
"schedulePageJumpToBookmarkTooltip": "Saltar al marcador", | ||
"schedulePageEventCommonEraTerm": "{isCE, select, true{d.C.} other{a.C.}}", | ||
"schedulePageToggleReadDialogTitle": "Alternar lectura", | ||
"schedulePageToggleReadDialogText": "¿Quieres marcar todas las secciones anteriores como leídas y todas las siguientes como no leídas?", | ||
"planEditPageTitle": "Editar Plan", | ||
"planEditPageChronologicalLabel": "cronológico", | ||
"planEditPageSequentialLabel": "secuencial", | ||
"planEditPageAsWrittenLabel": "como está escrito", | ||
"planEditPageThreeMonthsLabel": "3 meses", | ||
"planEditPageSixMonthsLabel": "6 meses", | ||
"planEditPageOneYearLabel": "1 año", | ||
"planEditPageTwoYearsLabel": "2 años", | ||
"planEditPageFourYearsLabel": "4 años", | ||
"planEditPageLanguageLabel": "Idioma", | ||
"planEditPageWithTargetDateTitle": "Con Fecha Objetivo", | ||
"planEditPageWithTargetDateSubtitle": "Sigue la lectura diaria con una fecha objetivo.", | ||
"planEditPageWithTargetDateStatusSubtitle": "La fecha objetivo es {targetDate}. Estás {direction, select, other{en el horario} ahead{{deviationDays} días adelantado} behind{{deviationDays} días atrasado}} con la lectura.", | ||
"planEditPageResetTargetDateTitle": "Restablecer Fecha Objetivo", | ||
"planEditPageResetTargetDateSubtitle": "Cambia la fecha objetivo a {targetDate} para estar en el horario de lectura.", | ||
"planEditPageResetTargetDateDialogTitle": "Confirmar restablecimiento de fecha objetivo", | ||
"planEditPageResetTargetDateDialogText": "¿Quieres cambiar la fecha objetivo para estar en el horario de lectura?", | ||
"planEditPageShowEventsTitle": "Mostrar Eventos", | ||
"planEditPageShowEventsSubtitle": "Muestra en las secciones los eventos con fechas, cuando ocurrieron.", | ||
"planEditPageShowLocationsTitle": "Mostrar Ubicaciones", | ||
"planEditPageShowLocationsSubtitle": "Muestra en las secciones las ubicaciones mencionadas.", | ||
"settingsPageTitle": "Configuraciones", | ||
"settingsPageSystemLabel": "sistema", | ||
"settingsPageLightLabel": "claro", | ||
"settingsPageDarkLabel": "oscuro", | ||
"settingsPageVersionLabel": "Versión", | ||
"settingsPageCopyrightLabel": "Derechos de autor" | ||
} |
Oops, something went wrong.