Added five new locales to flutter_localizations (#13621)

This commit is contained in:
Hans Muller 2017-12-19 11:09:50 -08:00 committed by GitHub
parent ce75911f1a
commit 12f405578f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
54 changed files with 1969 additions and 124 deletions

View File

@ -123,6 +123,25 @@ the "Other" suffix. For example the English translations
``` ```
### scriptCategory and timeOfDayFormat
The values of these resource IDs are not translations, they're keywords that
help define an app's text theme and time picker layout respectively.
The value of `timeOfDayFormat` defines how a time picker displayed by
[showTimePicker()](https://docs.flutter.io/flutter/material/showTimePicker.html)
formats and lays out its time controls. The value of `timeOfDayFormat` must be
a string that matches one of the formats defined by
https://docs.flutter.io/flutter/material/TimeOfDayFormat-class.html.
The value of `scriptCategory` is based on the
[Language categories reference](https://material.io/guidelines/style/typography.html#typography-language-categories-reference)
section in the Material spec. The `scriptCategory` value is used when looking up
the `TextTheme`, see the
[MaterialTextGeometry](https://docs.flutter.io/flutter/material/MaterialTextGeometry/forScriptCategory.html)
class.
### Generated file localizations.dart: all of the localizations as a Map ### Generated file localizations.dart: all of the localizations as a Map
If you look at the comment at the top of `localizations.dart` you'll If you look at the comment at the top of `localizations.dart` you'll
@ -161,19 +180,6 @@ English translations in `material_en.arb`. Google contributes
translations for all the languages supported by this package. translations for all the languages supported by this package.
(Googlers, for more details see <go/flutter-l10n>.) (Googlers, for more details see <go/flutter-l10n>.)
Not all of the translations represented here have been vetted by
native speakers. The following translations have been reviewed by
native speakers on the Flutter team:
* material_de.arb
* material_en.arb, material_en_GB.arb, material_en_IE.arb, material_en_ZA.arb
* material_fr.arb, material_fr_CA.arb
* material_ja.arb
* material_ru.arb
The others were automatically generated using the Google Translators
Toolkit. We are actively seeking review (by native speakers) for them.
If you have feedback about the translations please If you have feedback about the translations please
[file an issue on the Flutter github repo](https://github.com/flutter/flutter/issues/new). [file an issue on the Flutter github repo](https://github.com/flutter/flutter/issues/new).

File diff suppressed because it is too large Load Diff

View File

@ -9,7 +9,7 @@
"openAppDrawerTooltip": "فتح قائمة التنقل", "openAppDrawerTooltip": "فتح قائمة التنقل",
"backButtonTooltip": "رجوع", "backButtonTooltip": "رجوع",
"closeButtonTooltip": "إغلاق", "closeButtonTooltip": "إغلاق",
"deleteButtonTooltip": "", "deleteButtonTooltip": "حذف",
"nextMonthTooltip": "الشهر التالي", "nextMonthTooltip": "الشهر التالي",
"previousMonthTooltip": "الشهر السابق", "previousMonthTooltip": "الشهر السابق",
"nextPageTooltip": "الصفحة التالية", "nextPageTooltip": "الصفحة التالية",
@ -32,7 +32,7 @@
"viewLicensesButtonLabel": "الاطّلاع على التراخيص", "viewLicensesButtonLabel": "الاطّلاع على التراخيص",
"anteMeridiemAbbreviation": "ص", "anteMeridiemAbbreviation": "ص",
"postMeridiemAbbreviation": "م", "postMeridiemAbbreviation": "م",
"timePickerHourModeAnnouncement": "حدد ساعات", "timePickerHourModeAnnouncement": "اختيار الساعات",
"timePickerMinuteModeAnnouncement": "حدد دقائق", "timePickerMinuteModeAnnouncement": "اختيار الدقائق",
"modalBarrierDismissLabel": "تجاهل" "modalBarrierDismissLabel": "تجاهل"
} }

View File

@ -4,7 +4,7 @@
"openAppDrawerTooltip": "Navigationsmenü öffnen", "openAppDrawerTooltip": "Navigationsmenü öffnen",
"backButtonTooltip": "Zurück", "backButtonTooltip": "Zurück",
"closeButtonTooltip": "Schließen", "closeButtonTooltip": "Schließen",
"deleteButtonTooltip": "", "deleteButtonTooltip": "Löschen",
"nextMonthTooltip": "Nächster Monat", "nextMonthTooltip": "Nächster Monat",
"previousMonthTooltip": "Vorheriger Monat", "previousMonthTooltip": "Vorheriger Monat",
"nextPageTooltip": "Nächste Seite", "nextPageTooltip": "Nächste Seite",
@ -29,7 +29,7 @@
"viewLicensesButtonLabel": "LIZENZEN ANZEIGEN", "viewLicensesButtonLabel": "LIZENZEN ANZEIGEN",
"anteMeridiemAbbreviation": "VORM.", "anteMeridiemAbbreviation": "VORM.",
"postMeridiemAbbreviation": "NACHM.", "postMeridiemAbbreviation": "NACHM.",
"timePickerHourModeAnnouncement": "Stunde auswählen", "timePickerHourModeAnnouncement": "Stunden auswählen",
"timePickerMinuteModeAnnouncement": "Minute auswählen", "timePickerMinuteModeAnnouncement": "Minuten auswählen",
"modalBarrierDismissLabel": "Schließen" "modalBarrierDismissLabel": "Schließen"
} }

View File

@ -1,10 +1,12 @@
{ {
"timePickerMinuteModeAnnouncement": "Minuten auswählen",
"timePickerHourModeAnnouncement": "Stunden auswählen",
"scriptCategory": "English-like", "scriptCategory": "English-like",
"timeOfDayFormat": "HH:mm", "timeOfDayFormat": "HH:mm",
"openAppDrawerTooltip": "Navigationsmenü öffnen", "openAppDrawerTooltip": "Navigationsmenü öffnen",
"backButtonTooltip": "Zurück", "backButtonTooltip": "Zurück",
"closeButtonTooltip": "Schliessen", "closeButtonTooltip": "Schliessen",
"deleteButtonTooltip": "", "deleteButtonTooltip": "Löschen",
"nextMonthTooltip": "Nächster Monat", "nextMonthTooltip": "Nächster Monat",
"previousMonthTooltip": "Vorheriger Monat", "previousMonthTooltip": "Vorheriger Monat",
"nextPageTooltip": "Nächste Seite", "nextPageTooltip": "Nächste Seite",
@ -18,7 +20,7 @@
"selectedRowCountTitleOne": "1 Element ausgewählt", "selectedRowCountTitleOne": "1 Element ausgewählt",
"selectedRowCountTitleOther": "$selectedRowCount Elemente ausgewählt", "selectedRowCountTitleOther": "$selectedRowCount Elemente ausgewählt",
"cancelButtonLabel": "ABBRECHEN", "cancelButtonLabel": "ABBRECHEN",
"closeButtonLabel": "SCHLIESSEN", "closeButtonLabel": "SCHLIEEN",
"continueButtonLabel": "WEITER", "continueButtonLabel": "WEITER",
"copyButtonLabel": "KOPIEREN", "copyButtonLabel": "KOPIEREN",
"cutButtonLabel": "AUSSCHNEIDEN", "cutButtonLabel": "AUSSCHNEIDEN",

View File

@ -1,10 +1,12 @@
{ {
"timePickerMinuteModeAnnouncement": "Select minutes",
"timePickerHourModeAnnouncement": "Select hours",
"scriptCategory": "English-like", "scriptCategory": "English-like",
"timeOfDayFormat": "h:mm a", "timeOfDayFormat": "h:mm a",
"openAppDrawerTooltip": "Open navigation menu", "openAppDrawerTooltip": "Open navigation menu",
"backButtonTooltip": "Back", "backButtonTooltip": "Back",
"closeButtonTooltip": "Close", "closeButtonTooltip": "Close",
"deleteButtonTooltip": "", "deleteButtonTooltip": "Delete",
"nextMonthTooltip": "Next month", "nextMonthTooltip": "Next month",
"previousMonthTooltip": "Previous month", "previousMonthTooltip": "Previous month",
"nextPageTooltip": "Next page", "nextPageTooltip": "Next page",

View File

@ -1,10 +1,12 @@
{ {
"timePickerMinuteModeAnnouncement": "Select minutes",
"timePickerHourModeAnnouncement": "Select hours",
"scriptCategory": "English-like", "scriptCategory": "English-like",
"timeOfDayFormat": "h:mm a", "timeOfDayFormat": "h:mm a",
"openAppDrawerTooltip": "Open navigation menu", "openAppDrawerTooltip": "Open navigation menu",
"backButtonTooltip": "Back", "backButtonTooltip": "Back",
"closeButtonTooltip": "Close", "closeButtonTooltip": "Close",
"deleteButtonTooltip": "", "deleteButtonTooltip": "Delete",
"nextMonthTooltip": "Next month", "nextMonthTooltip": "Next month",
"previousMonthTooltip": "Previous month", "previousMonthTooltip": "Previous month",
"nextPageTooltip": "Next page", "nextPageTooltip": "Next page",

View File

@ -1,11 +1,13 @@
{ {
"timePickerMinuteModeAnnouncement": "Select minutes",
"timePickerHourModeAnnouncement": "Select hours",
"scriptCategory": "English-like", "scriptCategory": "English-like",
"timeOfDayFormat": "HH:mm", "timeOfDayFormat": "HH:mm",
"nextMonthTooltip": "Next month", "nextMonthTooltip": "Next month",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow of about $rowCount", "pageRowsInfoTitleApproximate": "$firstRow$lastRow of about $rowCount",
"copyButtonLabel": "COPY", "copyButtonLabel": "COPY",
"closeButtonTooltip": "Close", "closeButtonTooltip": "Close",
"deleteButtonTooltip": "", "deleteButtonTooltip": "Delete",
"selectAllButtonLabel": "SELECT ALL", "selectAllButtonLabel": "SELECT ALL",
"viewLicensesButtonLabel": "VIEW LICENCES", "viewLicensesButtonLabel": "VIEW LICENCES",
"rowsPerPageTitle": "Rows per page:", "rowsPerPageTitle": "Rows per page:",

View File

@ -1,11 +1,13 @@
{ {
"timePickerMinuteModeAnnouncement": "Select minutes",
"timePickerHourModeAnnouncement": "Select hours",
"scriptCategory": "English-like", "scriptCategory": "English-like",
"timeOfDayFormat": "HH:mm", "timeOfDayFormat": "HH:mm",
"nextMonthTooltip": "Next month", "nextMonthTooltip": "Next month",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow of about $rowCount", "pageRowsInfoTitleApproximate": "$firstRow$lastRow of about $rowCount",
"copyButtonLabel": "COPY", "copyButtonLabel": "COPY",
"closeButtonTooltip": "Close", "closeButtonTooltip": "Close",
"deleteButtonTooltip": "", "deleteButtonTooltip": "Delete",
"selectAllButtonLabel": "SELECT ALL", "selectAllButtonLabel": "SELECT ALL",
"viewLicensesButtonLabel": "VIEW LICENCES", "viewLicensesButtonLabel": "VIEW LICENCES",
"rowsPerPageTitle": "Rows per page:", "rowsPerPageTitle": "Rows per page:",

View File

@ -1,10 +1,12 @@
{ {
"timePickerMinuteModeAnnouncement": "Select minutes",
"timePickerHourModeAnnouncement": "Select hours",
"scriptCategory": "English-like", "scriptCategory": "English-like",
"timeOfDayFormat": "h:mm a", "timeOfDayFormat": "h:mm a",
"openAppDrawerTooltip": "Open navigation menu", "openAppDrawerTooltip": "Open navigation menu",
"backButtonTooltip": "Back", "backButtonTooltip": "Back",
"closeButtonTooltip": "Close", "closeButtonTooltip": "Close",
"deleteButtonTooltip": "", "deleteButtonTooltip": "Delete",
"nextMonthTooltip": "Next month", "nextMonthTooltip": "Next month",
"previousMonthTooltip": "Previous month", "previousMonthTooltip": "Previous month",
"nextPageTooltip": "Next page", "nextPageTooltip": "Next page",

View File

@ -1,10 +1,12 @@
{ {
"timePickerMinuteModeAnnouncement": "Select minutes",
"timePickerHourModeAnnouncement": "Select hours",
"scriptCategory": "English-like", "scriptCategory": "English-like",
"timeOfDayFormat": "h:mm a", "timeOfDayFormat": "h:mm a",
"openAppDrawerTooltip": "Open navigation menu", "openAppDrawerTooltip": "Open navigation menu",
"backButtonTooltip": "Back", "backButtonTooltip": "Back",
"closeButtonTooltip": "Close", "closeButtonTooltip": "Close",
"deleteButtonTooltip": "", "deleteButtonTooltip": "Delete",
"nextMonthTooltip": "Next month", "nextMonthTooltip": "Next month",
"previousMonthTooltip": "Previous month", "previousMonthTooltip": "Previous month",
"nextPageTooltip": "Next page", "nextPageTooltip": "Next page",

View File

@ -1,11 +1,13 @@
{ {
"timePickerMinuteModeAnnouncement": "Select minutes",
"timePickerHourModeAnnouncement": "Select hours",
"scriptCategory": "English-like", "scriptCategory": "English-like",
"timeOfDayFormat": "HH:mm", "timeOfDayFormat": "HH:mm",
"nextMonthTooltip": "Next month", "nextMonthTooltip": "Next month",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow of about $rowCount", "pageRowsInfoTitleApproximate": "$firstRow$lastRow of about $rowCount",
"copyButtonLabel": "COPY", "copyButtonLabel": "COPY",
"closeButtonTooltip": "Close", "closeButtonTooltip": "Close",
"deleteButtonTooltip": "", "deleteButtonTooltip": "Delete",
"selectAllButtonLabel": "SELECT ALL", "selectAllButtonLabel": "SELECT ALL",
"viewLicensesButtonLabel": "VIEW LICENCES", "viewLicensesButtonLabel": "VIEW LICENCES",
"rowsPerPageTitle": "Rows per page:", "rowsPerPageTitle": "Rows per page:",

View File

@ -4,7 +4,7 @@
"openAppDrawerTooltip": "Abrir el menú de navegación", "openAppDrawerTooltip": "Abrir el menú de navegación",
"backButtonTooltip": "Atrás", "backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar", "closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "", "deleteButtonTooltip": "Eliminar",
"nextMonthTooltip": "Mes siguiente", "nextMonthTooltip": "Mes siguiente",
"previousMonthTooltip": "Mes anterior", "previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Página siguiente", "nextPageTooltip": "Página siguiente",
@ -29,7 +29,7 @@
"viewLicensesButtonLabel": "VER LICENCIAS", "viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "A.M.", "anteMeridiemAbbreviation": "A.M.",
"postMeridiemAbbreviation": "P.M.", "postMeridiemAbbreviation": "P.M.",
"timePickerHourModeAnnouncement": "Seleccione Horas", "timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccione Minutos", "timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"modalBarrierDismissLabel": "Ignorar" "modalBarrierDismissLabel": "Ignorar"
} }

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "H:mm",
"openAppDrawerTooltip": "Abrir menú de navegación",
"backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menú",
"aboutListTileTitle": "Acerca de $applicationName",
"licensesPageTitle": "Licencias",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Filas por página:",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "CERRAR",
"continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTAR",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"selectAllButtonLabel": "SELECCIONAR TODO",
"viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos"
}

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "H:mm",
"openAppDrawerTooltip": "Abrir menú de navegación",
"backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menú",
"aboutListTileTitle": "Acerca de $applicationName",
"licensesPageTitle": "Licencias",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Filas por página:",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "CERRAR",
"continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTAR",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"selectAllButtonLabel": "SELECCIONAR TODO",
"viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos"
}

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "H:mm",
"openAppDrawerTooltip": "Abrir menú de navegación",
"backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menú",
"aboutListTileTitle": "Acerca de $applicationName",
"licensesPageTitle": "Licencias",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Filas por página:",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "CERRAR",
"continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTAR",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"selectAllButtonLabel": "SELECCIONAR TODO",
"viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos"
}

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "H:mm",
"openAppDrawerTooltip": "Abrir menú de navegación",
"backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menú",
"aboutListTileTitle": "Acerca de $applicationName",
"licensesPageTitle": "Licencias",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Filas por página:",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "CERRAR",
"continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTAR",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"selectAllButtonLabel": "SELECCIONAR TODO",
"viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos"
}

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "H:mm",
"openAppDrawerTooltip": "Abrir menú de navegación",
"backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menú",
"aboutListTileTitle": "Acerca de $applicationName",
"licensesPageTitle": "Licencias",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Filas por página:",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "CERRAR",
"continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTAR",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"selectAllButtonLabel": "SELECCIONAR TODO",
"viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos"
}

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "H:mm",
"openAppDrawerTooltip": "Abrir menú de navegación",
"backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menú",
"aboutListTileTitle": "Acerca de $applicationName",
"licensesPageTitle": "Licencias",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Filas por página:",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "CERRAR",
"continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTAR",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"selectAllButtonLabel": "SELECCIONAR TODO",
"viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos"
}

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "H:mm",
"openAppDrawerTooltip": "Abrir menú de navegación",
"backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menú",
"aboutListTileTitle": "Acerca de $applicationName",
"licensesPageTitle": "Licencias",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Filas por página:",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "CERRAR",
"continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTAR",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"selectAllButtonLabel": "SELECCIONAR TODO",
"viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos"
}

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "H:mm",
"openAppDrawerTooltip": "Abrir menú de navegación",
"backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menú",
"aboutListTileTitle": "Acerca de $applicationName",
"licensesPageTitle": "Licencias",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Filas por página:",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "CERRAR",
"continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTAR",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"selectAllButtonLabel": "SELECCIONAR TODO",
"viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos"
}

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "H:mm",
"openAppDrawerTooltip": "Abrir menú de navegación",
"backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menú",
"aboutListTileTitle": "Acerca de $applicationName",
"licensesPageTitle": "Licencias",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Filas por página:",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "CERRAR",
"continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTAR",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"selectAllButtonLabel": "SELECCIONAR TODO",
"viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos"
}

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "H:mm",
"openAppDrawerTooltip": "Abrir menú de navegación",
"backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menú",
"aboutListTileTitle": "Acerca de $applicationName",
"licensesPageTitle": "Licencias",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Filas por página:",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "CERRAR",
"continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTAR",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"selectAllButtonLabel": "SELECCIONAR TODO",
"viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos"
}

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "H:mm",
"openAppDrawerTooltip": "Abrir menú de navegación",
"backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menú",
"aboutListTileTitle": "Acerca de $applicationName",
"licensesPageTitle": "Licencias",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Filas por página:",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "CERRAR",
"continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTAR",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"selectAllButtonLabel": "SELECCIONAR TODO",
"viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos"
}

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "H:mm",
"openAppDrawerTooltip": "Abrir menú de navegación",
"backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menú",
"aboutListTileTitle": "Acerca de $applicationName",
"licensesPageTitle": "Licencias",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Filas por página:",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "CERRAR",
"continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTAR",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"selectAllButtonLabel": "SELECCIONAR TODO",
"viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos"
}

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "H:mm",
"openAppDrawerTooltip": "Abrir menú de navegación",
"backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menú",
"aboutListTileTitle": "Acerca de $applicationName",
"licensesPageTitle": "Licencias",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Filas por página:",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "CERRAR",
"continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTAR",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"selectAllButtonLabel": "SELECCIONAR TODO",
"viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos"
}

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "H:mm",
"openAppDrawerTooltip": "Abrir menú de navegación",
"backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menú",
"aboutListTileTitle": "Acerca de $applicationName",
"licensesPageTitle": "Licencias",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Filas por página:",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "CERRAR",
"continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTAR",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"selectAllButtonLabel": "SELECCIONAR TODO",
"viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos"
}

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "H:mm",
"openAppDrawerTooltip": "Abrir menú de navegación",
"backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menú",
"aboutListTileTitle": "Acerca de $applicationName",
"licensesPageTitle": "Licencias",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Filas por página:",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "CERRAR",
"continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTAR",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"selectAllButtonLabel": "SELECCIONAR TODO",
"viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos"
}

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "H:mm",
"openAppDrawerTooltip": "Abrir menú de navegación",
"backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menú",
"aboutListTileTitle": "Acerca de $applicationName",
"licensesPageTitle": "Licencias",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Filas por página:",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "CERRAR",
"continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTAR",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"selectAllButtonLabel": "SELECCIONAR TODO",
"viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos"
}

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "H:mm",
"openAppDrawerTooltip": "Abrir menú de navegación",
"backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menú",
"aboutListTileTitle": "Acerca de $applicationName",
"licensesPageTitle": "Licencias",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Filas por página:",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "CERRAR",
"continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTAR",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"selectAllButtonLabel": "SELECCIONAR TODO",
"viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos"
}

View File

@ -1,6 +1,33 @@
{ {
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"copyButtonLabel": "COPIAR",
"closeButtonTooltip": "Cerrar",
"selectAllButtonLabel": "SELECCIONAR TODO",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos",
"viewLicensesButtonLabel": "VER LICENCIAS",
"rowsPerPageTitle": "Filas por página:",
"aboutListTileTitle": "Acerca de $applicationName",
"backButtonTooltip": "Atrás",
"licensesPageTitle": "Licencias",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"previousMonthTooltip": "Mes anterior",
"closeButtonLabel": "CERRAR",
"cutButtonLabel": "CORTAR",
"continueButtonLabel": "CONTINUAR",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"nextPageTooltip": "Próxima página",
"openAppDrawerTooltip": "Abrir menú de navegación",
"previousPageTooltip": "Página anterior",
"cancelButtonLabel": "CANCELAR",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"showMenuTooltip": "Mostrar menú",
"scriptCategory": "English-like", "scriptCategory": "English-like",
"timeOfDayFormat": "h:mm a", "timeOfDayFormat": "h:mm a",
"anteMeridiemAbbreviation": "AM", "anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "PM" "postMeridiemAbbreviation": "p.m."
} }

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "H:mm",
"openAppDrawerTooltip": "Abrir menú de navegación",
"backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menú",
"aboutListTileTitle": "Acerca de $applicationName",
"licensesPageTitle": "Licencias",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Filas por página:",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "CERRAR",
"continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTAR",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"selectAllButtonLabel": "SELECCIONAR TODO",
"viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos"
}

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "H:mm",
"openAppDrawerTooltip": "Abrir menú de navegación",
"backButtonTooltip": "Atrás",
"closeButtonTooltip": "Cerrar",
"deleteButtonTooltip": "Borrar",
"nextMonthTooltip": "Próximo mes",
"previousMonthTooltip": "Mes anterior",
"nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menú",
"aboutListTileTitle": "Acerca de $applicationName",
"licensesPageTitle": "Licencias",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Filas por página:",
"selectedRowCountTitleOne": "Se seleccionó 1 elemento",
"selectedRowCountTitleOther": "Se seleccionaron $selectedRowCount elementos",
"cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "CERRAR",
"continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTAR",
"okButtonLabel": "ACEPTAR",
"pasteButtonLabel": "PEGAR",
"selectAllButtonLabel": "SELECCIONAR TODO",
"viewLicensesButtonLabel": "VER LICENCIAS",
"anteMeridiemAbbreviation": "a.m.",
"postMeridiemAbbreviation": "p.m.",
"timePickerHourModeAnnouncement": "Seleccionar horas",
"timePickerMinuteModeAnnouncement": "Seleccionar minutos"
}

View File

@ -5,7 +5,7 @@
"openAppDrawerTooltip": "باز کردن منوی پیمایش", "openAppDrawerTooltip": "باز کردن منوی پیمایش",
"backButtonTooltip": "برگشت", "backButtonTooltip": "برگشت",
"closeButtonTooltip": "بستن", "closeButtonTooltip": "بستن",
"deleteButtonTooltip": "", "deleteButtonTooltip": "حذف",
"nextMonthTooltip": "ماه بعد", "nextMonthTooltip": "ماه بعد",
"previousMonthTooltip": "ماه قبل", "previousMonthTooltip": "ماه قبل",
"nextPageTooltip": "صفحه بعد", "nextPageTooltip": "صفحه بعد",
@ -28,7 +28,7 @@
"viewLicensesButtonLabel": "مشاهده مجوزها", "viewLicensesButtonLabel": "مشاهده مجوزها",
"anteMeridiemAbbreviation": "ق.ظ.", "anteMeridiemAbbreviation": "ق.ظ.",
"postMeridiemAbbreviation": "ب.ظ.", "postMeridiemAbbreviation": "ب.ظ.",
"timePickerHourModeAnnouncement": "ساعت ها را انتخاب کنید", "timePickerHourModeAnnouncement": "انتخاب ساعت",
"timePickerMinuteModeAnnouncement": "دقیقه را انتخاب کنید", "timePickerMinuteModeAnnouncement": "انتخاب دقیقه",
"modalBarrierDismissLabel": "رد کردن" "modalBarrierDismissLabel": "رد کردن"
} }

View File

@ -4,7 +4,7 @@
"openAppDrawerTooltip": "Ouvrir le menu de navigation", "openAppDrawerTooltip": "Ouvrir le menu de navigation",
"backButtonTooltip": "Retour", "backButtonTooltip": "Retour",
"closeButtonTooltip": "Fermer", "closeButtonTooltip": "Fermer",
"deleteButtonTooltip": "", "deleteButtonTooltip": "Supprimer",
"nextMonthTooltip": "Mois suivant", "nextMonthTooltip": "Mois suivant",
"previousMonthTooltip": "Mois précédent", "previousMonthTooltip": "Mois précédent",
"nextPageTooltip": "Page suivante", "nextPageTooltip": "Page suivante",
@ -29,7 +29,7 @@
"viewLicensesButtonLabel": "AFFICHER LES LICENCES", "viewLicensesButtonLabel": "AFFICHER LES LICENCES",
"anteMeridiemAbbreviation": "AM", "anteMeridiemAbbreviation": "AM",
"postMeridiemAbbreviation": "PM", "postMeridiemAbbreviation": "PM",
"timePickerHourModeAnnouncement": "Sélectionnez les heures", "timePickerHourModeAnnouncement": "Sélectionner une heure",
"timePickerMinuteModeAnnouncement": "Sélectionnez les minutes", "timePickerMinuteModeAnnouncement": "Sélectionner des minutes",
"modalBarrierDismissLabel": "Ignorer" "modalBarrierDismissLabel": "Ignorer"
} }

View File

@ -1,10 +1,12 @@
{ {
"timePickerMinuteModeAnnouncement": "Minuten auswählen",
"timePickerHourModeAnnouncement": "Stunden auswählen",
"scriptCategory": "English-like", "scriptCategory": "English-like",
"timeOfDayFormat": "HH:mm", "timeOfDayFormat": "HH:mm",
"openAppDrawerTooltip": "Navigationsmenü öffnen", "openAppDrawerTooltip": "Navigationsmenü öffnen",
"backButtonTooltip": "Zurück", "backButtonTooltip": "Zurück",
"closeButtonTooltip": "Schließen", "closeButtonTooltip": "Schließen",
"deleteButtonTooltip": "", "deleteButtonTooltip": "Löschen",
"nextMonthTooltip": "Nächster Monat", "nextMonthTooltip": "Nächster Monat",
"previousMonthTooltip": "Vorheriger Monat", "previousMonthTooltip": "Vorheriger Monat",
"nextPageTooltip": "Nächste Seite", "nextPageTooltip": "Nächste Seite",

View File

@ -7,7 +7,7 @@
"openAppDrawerTooltip": "פתיחה של תפריט הניווט", "openAppDrawerTooltip": "פתיחה של תפריט הניווט",
"backButtonTooltip": "הקודם", "backButtonTooltip": "הקודם",
"closeButtonTooltip": "סגירה", "closeButtonTooltip": "סגירה",
"deleteButtonTooltip": "", "deleteButtonTooltip": "מחיקה",
"nextMonthTooltip": "החודש הבא", "nextMonthTooltip": "החודש הבא",
"previousMonthTooltip": "החודש הקודם", "previousMonthTooltip": "החודש הקודם",
"nextPageTooltip": "הדף הבא", "nextPageTooltip": "הדף הבא",
@ -30,7 +30,7 @@
"viewLicensesButtonLabel": "הצגת הרישיונות", "viewLicensesButtonLabel": "הצגת הרישיונות",
"anteMeridiemAbbreviation": "AM", "anteMeridiemAbbreviation": "AM",
"postMeridiemAbbreviation": "PM", "postMeridiemAbbreviation": "PM",
"timePickerHourModeAnnouncement": "בחר שעות", "timePickerHourModeAnnouncement": "בחירת שעות",
"timePickerMinuteModeAnnouncement": "בחר דקות", "timePickerMinuteModeAnnouncement": "בחירת דקות",
"modalBarrierDismissLabel": "סגירה" "modalBarrierDismissLabel": "סגירה"
} }

View File

@ -5,7 +5,7 @@
"openAppDrawerTooltip": "Apri il menu di navigazione", "openAppDrawerTooltip": "Apri il menu di navigazione",
"backButtonTooltip": "Indietro", "backButtonTooltip": "Indietro",
"closeButtonTooltip": "Chiudi", "closeButtonTooltip": "Chiudi",
"deleteButtonTooltip": "", "deleteButtonTooltip": "Elimina",
"nextMonthTooltip": "Mese successivo", "nextMonthTooltip": "Mese successivo",
"previousMonthTooltip": "Mese precedente", "previousMonthTooltip": "Mese precedente",
"nextPageTooltip": "Pagina successiva", "nextPageTooltip": "Pagina successiva",
@ -28,7 +28,7 @@
"viewLicensesButtonLabel": "VISUALIZZA LICENZE", "viewLicensesButtonLabel": "VISUALIZZA LICENZE",
"anteMeridiemAbbreviation": "AM", "anteMeridiemAbbreviation": "AM",
"postMeridiemAbbreviation": "PM", "postMeridiemAbbreviation": "PM",
"timePickerHourModeAnnouncement": "Seleziona ore", "timePickerHourModeAnnouncement": "Seleziona le ore",
"timePickerMinuteModeAnnouncement": "Seleziona minuti", "timePickerMinuteModeAnnouncement": "Seleziona i minuti",
"modalBarrierDismissLabel": "Ignora" "modalBarrierDismissLabel": "Ignora"
} }

View File

@ -5,7 +5,7 @@
"openAppDrawerTooltip": "ナビゲーション メニューを開く", "openAppDrawerTooltip": "ナビゲーション メニューを開く",
"backButtonTooltip": "戻る", "backButtonTooltip": "戻る",
"closeButtonTooltip": "閉じる", "closeButtonTooltip": "閉じる",
"deleteButtonTooltip": "", "deleteButtonTooltip": "削除",
"nextMonthTooltip": "来月", "nextMonthTooltip": "来月",
"previousMonthTooltip": "前月", "previousMonthTooltip": "前月",
"nextPageTooltip": "次のページ", "nextPageTooltip": "次のページ",
@ -28,7 +28,7 @@
"viewLicensesButtonLabel": "ライセンスを表示", "viewLicensesButtonLabel": "ライセンスを表示",
"anteMeridiemAbbreviation": "AM", "anteMeridiemAbbreviation": "AM",
"postMeridiemAbbreviation": "PM", "postMeridiemAbbreviation": "PM",
"timePickerHourModeAnnouncement": "時を選択", "timePickerHourModeAnnouncement": "時を選択",
"timePickerMinuteModeAnnouncement": "分を選択", "timePickerMinuteModeAnnouncement": "分を選択",
"modalBarrierDismissLabel": "閉じる" "modalBarrierDismissLabel": "閉じる"
} }

View File

@ -0,0 +1,34 @@
{
"scriptCategory": "dense",
"timeOfDayFormat": "a h:mm",
"openAppDrawerTooltip": "탐색 메뉴 열기",
"backButtonTooltip": "뒤로",
"closeButtonTooltip": "닫기",
"deleteButtonTooltip": "삭제",
"nextMonthTooltip": "다음 달",
"previousMonthTooltip": "지난달",
"nextPageTooltip": "다음 페이지",
"previousPageTooltip": "이전 페이지",
"showMenuTooltip": "메뉴 표시",
"aboutListTileTitle": "$applicationName 정보",
"licensesPageTitle": "라이선스",
"pageRowsInfoTitle": "$rowCount행 중 $firstRow~$lastRow행",
"pageRowsInfoTitleApproximate": "약 $rowCount행 중 $firstRow~$lastRow행",
"rowsPerPageTitle": "페이지당 행 수:",
"selectedRowCountTitleOne": "항목 1개 선택됨",
"selectedRowCountTitleOther": "항목 $selectedRowCount개 선택됨",
"cancelButtonLabel": "취소",
"closeButtonLabel": "닫기",
"continueButtonLabel": "계속",
"copyButtonLabel": "복사",
"cutButtonLabel": "잘라내기",
"okButtonLabel": "확인",
"pasteButtonLabel": "붙여넣기",
"selectAllButtonLabel": "전체 선택",
"viewLicensesButtonLabel": "라이선스 보기",
"anteMeridiemAbbreviation": "오전",
"postMeridiemAbbreviation": "오후",
"timePickerHourModeAnnouncement": "시간 선택",
"timePickerMinuteModeAnnouncement": "분 선택",
"modalBarrierDismissLabel": "버리다"
}

View File

@ -0,0 +1,34 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "HH:mm",
"openAppDrawerTooltip": "Navigatiemenu openen",
"backButtonTooltip": "Terug",
"closeButtonTooltip": "Sluiten",
"deleteButtonTooltip": "Verwijderen",
"nextMonthTooltip": "Volgende maand",
"previousMonthTooltip": "Vorige maand",
"nextPageTooltip": "Volgende pagina",
"previousPageTooltip": "Vorige pagina",
"showMenuTooltip": "Menu weergeven",
"aboutListTileTitle": "Over $applicationName",
"licensesPageTitle": "Licenties",
"pageRowsInfoTitle": "$firstRow-$lastRow van $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow-$lastRow van ongeveer $rowCount",
"rowsPerPageTitle": "Rijen per pagina:",
"selectedRowCountTitleOne": "1 item geselecteerd",
"selectedRowCountTitleOther": "$selectedRowCount items geselecteerd",
"cancelButtonLabel": "ANNULEREN",
"closeButtonLabel": "SLUITEN",
"continueButtonLabel": "DOORGAAN",
"copyButtonLabel": "KOPIËREN",
"cutButtonLabel": "KNIPPEN",
"okButtonLabel": "OK",
"pasteButtonLabel": "PLAKKEN",
"selectAllButtonLabel": "ALLES SELECTEREN",
"viewLicensesButtonLabel": "LICENTIES BEKIJKEN",
"anteMeridiemAbbreviation": "am",
"postMeridiemAbbreviation": "pm",
"timePickerHourModeAnnouncement": "Uren selecteren",
"timePickerMinuteModeAnnouncement": "Minuten selecteren",
"modalBarrierDismissLabel": "ontslaan"
}

View File

@ -0,0 +1,36 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "HH:mm",
"selectedRowCountTitleFew": "$selectedRowCount wybrane elementy",
"selectedRowCountTitleMany": "$selectedRowCount wybranych elementów",
"openAppDrawerTooltip": "Otwórz menu nawigacyjne",
"backButtonTooltip": "Wstecz",
"closeButtonTooltip": "Zamknij",
"deleteButtonTooltip": "Usuń",
"nextMonthTooltip": "Następny miesiąc",
"previousMonthTooltip": "Poprzedni miesiąc",
"nextPageTooltip": "Następna strona",
"previousPageTooltip": "Poprzednia strona",
"showMenuTooltip": "Pokaż menu",
"aboutListTileTitle": "$applicationName informacje",
"licensesPageTitle": "Licencje",
"pageRowsInfoTitle": "$firstRow$lastRow z $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow z około $rowCount",
"rowsPerPageTitle": "Wiersze na stronie:",
"selectedRowCountTitleOne": "1 wybrany element",
"selectedRowCountTitleOther": "$selectedRowCount wybranego elementu",
"cancelButtonLabel": "ANULUJ",
"closeButtonLabel": "ZAMKNIJ",
"continueButtonLabel": "DALEJ",
"copyButtonLabel": "KOPIUJ",
"cutButtonLabel": "WYTNIJ",
"okButtonLabel": "OK",
"pasteButtonLabel": "WKLEJ",
"selectAllButtonLabel": "ZAZNACZ WSZYSTKO",
"viewLicensesButtonLabel": "WYŚWIETL LICENCJE",
"anteMeridiemAbbreviation": "AM",
"postMeridiemAbbreviation": "PM",
"timePickerHourModeAnnouncement": "Wybierz godziny",
"timePickerMinuteModeAnnouncement": "Wybierz minuty",
"modalBarrierDismissLabel": "oddalić"
}

View File

@ -1,8 +1,8 @@
{ {
"scriptCategory": "tall", "scriptCategory": "tall",
"timeOfDayFormat": "HH:mm", "timeOfDayFormat": "HH:mm",
"@anteMeridiemAbbreviation": { "notUsed": "Pashto time format does not use a.m. indicator" }, "@anteMeridiemAbbreviation": {"notUsed":"Pashto time format does not use a.m. indicator"},
"@postMeridiemAbbreviation": { "notUsed": "Pashto time format does not use p.m. indicator" }, "@postMeridiemAbbreviation": {"notUsed":"Pashto time format does not use p.m. indicator"},
"openAppDrawerTooltip": "د پرانیستی نیینګ مینو", "openAppDrawerTooltip": "د پرانیستی نیینګ مینو",
"backButtonTooltip": "شاته", "backButtonTooltip": "شاته",
"closeButtonTooltip": "بنده", "closeButtonTooltip": "بنده",

View File

@ -1,33 +1,36 @@
{ {
"anteMeridiemAbbreviation": "Manhã",
"selectedRowCountTitleOne": "1 item selecionado",
"postMeridiemAbbreviation": "Tarde/noite",
"scriptCategory": "English-like", "scriptCategory": "English-like",
"timeOfDayFormat": "HH:mm", "timeOfDayFormat": "HH:mm",
"@anteMeridiemAbbreviation": { "notUsed": "Pashto time format does not use a.m. indicator" }, "@anteMeridiemAbbreviation": {"notUsed":"Pashto time format does not use a.m. indicator"},
"@postMeridiemAbbreviation": { "notUsed": "Pashto time format does not use p.m. indicator" }, "@postMeridiemAbbreviation": {"notUsed":"Pashto time format does not use p.m. indicator"},
"openAppDrawerTooltip": "Abrir menu de navegação", "openAppDrawerTooltip": "Abrir menu de navegação",
"backButtonTooltip": "Costas", "backButtonTooltip": "Voltar",
"closeButtonTooltip": "Fechar", "closeButtonTooltip": "Fechar",
"deleteButtonTooltip": "", "deleteButtonTooltip": "Excluir",
"nextMonthTooltip": "Próximo mês", "nextMonthTooltip": "Próximo mês",
"previousMonthTooltip": "Mês anterior", "previousMonthTooltip": "Mês anterior",
"nextPageTooltip": "Próxima página", "nextPageTooltip": "Próxima página",
"previousPageTooltip": "Página anterior", "previousPageTooltip": "Página anterior",
"showMenuTooltip": "Mostrar menu", "showMenuTooltip": "Mostrar menu",
"aboutListTileTitle": "Sobre $applicationName", "aboutListTileTitle": "Sobre o app $applicationName",
"licensesPageTitle": "Licenças", "licensesPageTitle": "Licenças",
"pageRowsInfoTitle": "$firstRow$lastRow de $rowCount", "pageRowsInfoTitle": "$firstRow $lastRow de $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow de cerca de $rowCount", "pageRowsInfoTitleApproximate": "$firstRow $lastRow de aproximadamente $rowCount",
"rowsPerPageTitle": "Linhas por página:", "rowsPerPageTitle": "Linhas por página:",
"selectedRowCountTitleOther": "$selectedRowCount selecionados", "selectedRowCountTitleOther": "$selectedRowCount itens selecionados",
"cancelButtonLabel": "CANCELAR", "cancelButtonLabel": "CANCELAR",
"closeButtonLabel": "FECHAR", "closeButtonLabel": "FECHAR",
"continueButtonLabel": "CONTINUAR", "continueButtonLabel": "CONTINUAR",
"copyButtonLabel": "CÓPIA DE", "copyButtonLabel": "COPIAR",
"cutButtonLabel": "CORTA", "cutButtonLabel": "RECORTAR",
"okButtonLabel": "OK", "okButtonLabel": "Ok",
"pasteButtonLabel": "COLAR", "pasteButtonLabel": "COLAR",
"selectAllButtonLabel": "SELECIONAR TUDO", "selectAllButtonLabel": "SELECIONAR TUDO",
"viewLicensesButtonLabel": "VER LICENÇAS", "viewLicensesButtonLabel": "VER LICENÇAS",
"timePickerHourModeAnnouncement": "Selecione horários", "timePickerHourModeAnnouncement": "Selecione as horas",
"timePickerMinuteModeAnnouncement": "Selecione Minutos", "timePickerMinuteModeAnnouncement": "Selecione os minutos",
"modalBarrierDismissLabel": "Dispensar" "modalBarrierDismissLabel": "Dispensar"
} }

View File

@ -1,10 +1,12 @@
{ {
"timePickerMinuteModeAnnouncement": "Selecionar minutos",
"timePickerHourModeAnnouncement": "Selecionar horas",
"scriptCategory": "English-like", "scriptCategory": "English-like",
"timeOfDayFormat": "HH:mm", "timeOfDayFormat": "HH:mm",
"openAppDrawerTooltip": "Abrir menu de navegação", "openAppDrawerTooltip": "Abrir menu de navegação",
"backButtonTooltip": "Anterior", "backButtonTooltip": "Voltar",
"closeButtonTooltip": "Fechar", "closeButtonTooltip": "Fechar",
"deleteButtonTooltip": "", "deleteButtonTooltip": "Eliminar",
"nextMonthTooltip": "Mês seguinte", "nextMonthTooltip": "Mês seguinte",
"previousMonthTooltip": "Mês anterior", "previousMonthTooltip": "Mês anterior",
"nextPageTooltip": "Página seguinte", "nextPageTooltip": "Página seguinte",

View File

@ -6,7 +6,7 @@
"openAppDrawerTooltip": "Открыть меню навигации", "openAppDrawerTooltip": "Открыть меню навигации",
"backButtonTooltip": "Назад", "backButtonTooltip": "Назад",
"closeButtonTooltip": "Закрыть", "closeButtonTooltip": "Закрыть",
"deleteButtonTooltip": "", "deleteButtonTooltip": "Удалить",
"nextMonthTooltip": "Следующий месяц", "nextMonthTooltip": "Следующий месяц",
"previousMonthTooltip": "Предыдущий месяц", "previousMonthTooltip": "Предыдущий месяц",
"nextPageTooltip": "Следующая страница", "nextPageTooltip": "Следующая страница",
@ -31,7 +31,7 @@
"viewLicensesButtonLabel": "ЛИЦЕНЗИИ", "viewLicensesButtonLabel": "ЛИЦЕНЗИИ",
"anteMeridiemAbbreviation": "АМ", "anteMeridiemAbbreviation": "АМ",
"postMeridiemAbbreviation": "PM", "postMeridiemAbbreviation": "PM",
"timePickerHourModeAnnouncement": "ВЫБРАТЬ ЧАСЫ", "timePickerHourModeAnnouncement": "Выберите часы",
"timePickerMinuteModeAnnouncement": "ВЫБРАТЬ МИНУТЫ", "timePickerMinuteModeAnnouncement": "Выберите минуты",
"modalBarrierDismissLabel": "Закрыть" "modalBarrierDismissLabel": "Закрыть"
} }

View File

@ -0,0 +1,34 @@
{
"scriptCategory": "tall",
"timeOfDayFormat": "ah:mm",
"openAppDrawerTooltip": "เปิดเมนูการนำทาง",
"backButtonTooltip": "กลับ",
"closeButtonTooltip": "ปิด",
"deleteButtonTooltip": "ลบ",
"nextMonthTooltip": "เดือนหน้า",
"previousMonthTooltip": "เดือนที่แล้ว",
"nextPageTooltip": "หน้าถัดไป",
"previousPageTooltip": "หน้าก่อน",
"showMenuTooltip": "แสดงเมนู",
"aboutListTileTitle": "เกี่ยวกับ $applicationName",
"licensesPageTitle": "ใบอนุญาต",
"pageRowsInfoTitle": "$firstRow-$lastRow จาก $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow$lastRow จากประมาณ $rowCount",
"rowsPerPageTitle": "แถวต่อหน้า:",
"selectedRowCountTitleOne": "เลือกแล้ว 1 รายการ",
"selectedRowCountTitleOther": "เลือกแล้ว $selectedRowCount รายการ",
"cancelButtonLabel": "ยกเลิก",
"closeButtonLabel": "ปิด",
"continueButtonLabel": "ต่อไป",
"copyButtonLabel": "คัดลอก",
"cutButtonLabel": "ตัด",
"okButtonLabel": "ตกลง",
"pasteButtonLabel": "วาง",
"selectAllButtonLabel": "เลือกทั้งหมด",
"viewLicensesButtonLabel": "ดูใบอนุญาต",
"anteMeridiemAbbreviation": "AM",
"postMeridiemAbbreviation": "PM",
"timePickerHourModeAnnouncement": "เลือกชั่วโมง",
"timePickerMinuteModeAnnouncement": "เลือกนาที",
"modalBarrierDismissLabel": "ยกเลิก"
}

View File

@ -0,0 +1,34 @@
{
"scriptCategory": "English-like",
"timeOfDayFormat": "HH:mm",
"openAppDrawerTooltip": "Gezinme menüsünü aç",
"backButtonTooltip": "Geri",
"closeButtonTooltip": "Kapat",
"deleteButtonTooltip": "Sil",
"nextMonthTooltip": "Gelecek ay",
"previousMonthTooltip": "Önceki ay",
"nextPageTooltip": "Sonraki sayfa",
"previousPageTooltip": "Önceki sayfa",
"showMenuTooltip": "Menüyü göster",
"aboutListTileTitle": "$applicationName Hakkında",
"licensesPageTitle": "Lisanslar",
"pageRowsInfoTitle": "$firstRow-$lastRow / $rowCount",
"pageRowsInfoTitleApproximate": "$firstRow-$lastRow / $rowCount",
"rowsPerPageTitle": "Sayfa başına satır sayısı:",
"selectedRowCountTitleOne": "1 öğe seçildi",
"selectedRowCountTitleOther": "$selectedRowCount öğe seçildi",
"cancelButtonLabel": "İPTAL",
"closeButtonLabel": "KAPAT",
"continueButtonLabel": "DEVAM",
"copyButtonLabel": "KOPYALA",
"cutButtonLabel": "KES",
"okButtonLabel": "Tamam",
"pasteButtonLabel": "YAPIŞTIR",
"selectAllButtonLabel": "TÜMÜNÜ SEÇ",
"viewLicensesButtonLabel": "LİSANLARI GÖSTER",
"anteMeridiemAbbreviation": "ÖÖ",
"postMeridiemAbbreviation": "ÖS",
"timePickerHourModeAnnouncement": "Saati seçin",
"timePickerMinuteModeAnnouncement": "Dakikayı seçin",
"modalBarrierDismissLabel": "Reddet"
}

View File

@ -5,7 +5,7 @@
"openAppDrawerTooltip": "نیویگیشن مینو کھولیں", "openAppDrawerTooltip": "نیویگیشن مینو کھولیں",
"backButtonTooltip": "پیچھے", "backButtonTooltip": "پیچھے",
"closeButtonTooltip": "بند کریں", "closeButtonTooltip": "بند کریں",
"deleteButtonTooltip": "", "deleteButtonTooltip": "حذف کریں",
"nextMonthTooltip": "اگلا مہینہ", "nextMonthTooltip": "اگلا مہینہ",
"previousMonthTooltip": "پچھلا مہینہ", "previousMonthTooltip": "پچھلا مہینہ",
"nextPageTooltip": "اگلا صفحہ", "nextPageTooltip": "اگلا صفحہ",

View File

@ -23,7 +23,7 @@
"selectAllButtonLabel": "全选", "selectAllButtonLabel": "全选",
"viewLicensesButtonLabel": "查看许可", "viewLicensesButtonLabel": "查看许可",
"closeButtonTooltip": "关闭", "closeButtonTooltip": "关闭",
"deleteButtonTooltip": "", "deleteButtonTooltip": "删除",
"nextMonthTooltip": "下个月", "nextMonthTooltip": "下个月",
"previousMonthTooltip": "上个月", "previousMonthTooltip": "上个月",
"anteMeridiemAbbreviation": "上午", "anteMeridiemAbbreviation": "上午",

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "dense",
"timeOfDayFormat": "ah:mm",
"openAppDrawerTooltip": "開啟導覽選單",
"backButtonTooltip": "返回",
"closeButtonTooltip": "關閉",
"deleteButtonTooltip": "刪除",
"nextMonthTooltip": "下個月",
"previousMonthTooltip": "上個月",
"nextPageTooltip": "下一頁",
"previousPageTooltip": "上一頁",
"showMenuTooltip": "顯示選單",
"aboutListTileTitle": "關於「$applicationName」",
"licensesPageTitle": "授權",
"pageRowsInfoTitle": "第 $firstRow - $lastRow 列 (總共 $rowCount 列)",
"pageRowsInfoTitleApproximate": "第 $firstRow - $lastRow 列 (總共約 $rowCount 列)",
"rowsPerPageTitle": "每頁列數:",
"selectedRowCountTitleOne": "已選取 1 個項目",
"selectedRowCountTitleOther": "已選取 $selectedRowCount 個項目",
"cancelButtonLabel": "取消",
"closeButtonLabel": "關閉",
"continueButtonLabel": "繼續",
"copyButtonLabel": "複製",
"cutButtonLabel": "剪下",
"okButtonLabel": "確定",
"pasteButtonLabel": "貼上",
"selectAllButtonLabel": "全選",
"viewLicensesButtonLabel": "查看授權",
"anteMeridiemAbbreviation": "上午",
"postMeridiemAbbreviation": "下午",
"timePickerHourModeAnnouncement": "選取小時數",
"timePickerMinuteModeAnnouncement": "選取分鐘數"
}

View File

@ -0,0 +1,33 @@
{
"scriptCategory": "dense",
"timeOfDayFormat": "ah:mm",
"openAppDrawerTooltip": "開啟導覽選單",
"backButtonTooltip": "返回",
"closeButtonTooltip": "關閉",
"deleteButtonTooltip": "刪除",
"nextMonthTooltip": "下個月",
"previousMonthTooltip": "上個月",
"nextPageTooltip": "下一頁",
"previousPageTooltip": "上一頁",
"showMenuTooltip": "顯示選單",
"aboutListTileTitle": "關於「$applicationName」",
"licensesPageTitle": "授權",
"pageRowsInfoTitle": "第 $firstRow - $lastRow 列 (總共 $rowCount 列)",
"pageRowsInfoTitleApproximate": "第 $firstRow - $lastRow 列 (總共約 $rowCount 列)",
"rowsPerPageTitle": "每頁列數:",
"selectedRowCountTitleOne": "已選取 1 個項目",
"selectedRowCountTitleOther": "已選取 $selectedRowCount 個項目",
"cancelButtonLabel": "取消",
"closeButtonLabel": "關閉",
"continueButtonLabel": "繼續",
"copyButtonLabel": "複製",
"cutButtonLabel": "剪下",
"okButtonLabel": "確定",
"pasteButtonLabel": "貼上",
"selectAllButtonLabel": "全選",
"viewLicensesButtonLabel": "查看授權",
"anteMeridiemAbbreviation": "上午",
"postMeridiemAbbreviation": "下午",
"timePickerHourModeAnnouncement": "選取小時數",
"timePickerMinuteModeAnnouncement": "選取分鐘數"
}

View File

@ -44,10 +44,14 @@ import 'widgets_localizations.dart';
/// * he - Hebrew /// * he - Hebrew
/// * it - Italian /// * it - Italian
/// * ja - Japanese /// * ja - Japanese
/// * ko - Korean
/// * nl - Dutch
/// * pl - Polish
/// * ps - Pashto /// * ps - Pashto
/// * pt - Portuguese /// * pt - Portuguese
/// * ru - Russian /// * ru - Russian
/// * sd - Sindhi /// * th - Thai
/// * tr - Turkish
/// * ur - Urdu /// * ur - Urdu
/// * zh - Simplified Chinese /// * zh - Simplified Chinese
/// ///

View File

@ -17,9 +17,14 @@ void main() {
'he', // Hebrew 'he', // Hebrew
'it', // Italian 'it', // Italian
'ja', // Japanese 'ja', // Japanese
'ko', // Korean
'nl', // Dutch
'pl', // Polish
'ps', // Pashto 'ps', // Pashto
'pt', // Portugese 'pt', // Portugese
'ru', // Russian 'ru', // Russian
'th', // Thai
'tr', // Turkish
'ur', // Urdu 'ur', // Urdu
'zh', // Chinese (simplified) 'zh', // Chinese (simplified)
]; ];