mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-07 05:15:50 -06:00
feat: Add new translations, bump version number
This commit is contained in:
@@ -53,16 +53,15 @@ class _DocumentDownloadButtonState extends State<DocumentDownloadButton> {
|
|||||||
final downloadOriginal = await showDialog<bool>(
|
final downloadOriginal = await showDialog<bool>(
|
||||||
context: context,
|
context: context,
|
||||||
builder: (context) => RadioSettingsDialog(
|
builder: (context) => RadioSettingsDialog(
|
||||||
titleText: "Choose filetype", //TODO: INTL
|
titleText: S.of(context).documentDownloadDialogChooseFiletype,
|
||||||
options: [
|
options: [
|
||||||
RadioOption(
|
RadioOption(
|
||||||
value: true,
|
value: true,
|
||||||
label:
|
label: S.of(context).documentDownloadDialogOriginalOption +
|
||||||
"Original (${meta.originalMimeType.split("/").last})", //TODO: INTL
|
" (${meta.originalMimeType.split("/").last})"),
|
||||||
),
|
|
||||||
RadioOption(
|
RadioOption(
|
||||||
value: false,
|
value: false,
|
||||||
label: "Archived (pdf)", //TODO: INTL
|
label: S.of(context).documentDownloadDialogArchivedOption,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
initialValue: false,
|
initialValue: false,
|
||||||
|
|||||||
@@ -296,7 +296,7 @@ class _DocumentsPageState extends State<DocumentsPage>
|
|||||||
_nestedScrollViewKey.currentState?.outerController.jumpTo(0);
|
_nestedScrollViewKey.currentState?.outerController.jumpTo(0);
|
||||||
},
|
},
|
||||||
label: Text(
|
label: Text(
|
||||||
"Go to top", //TODO: INTL
|
S.of(context).scrollToTopLabel,
|
||||||
style: DefaultTextStyle.of(context).style.apply(
|
style: DefaultTextStyle.of(context).style.apply(
|
||||||
color: Theme.of(context).colorScheme.onPrimary,
|
color: Theme.of(context).colorScheme.onPrimary,
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:paperless_mobile/features/settings/model/view_type.dart';
|
import 'package:paperless_mobile/features/settings/model/view_type.dart';
|
||||||
|
import 'package:paperless_mobile/generated/l10n.dart';
|
||||||
|
|
||||||
/// Meant to be used with blocbuilder.
|
/// Meant to be used with blocbuilder.
|
||||||
class ViewTypeSelectionWidget extends StatelessWidget {
|
class ViewTypeSelectionWidget extends StatelessWidget {
|
||||||
@@ -33,19 +34,19 @@ class ViewTypeSelectionWidget extends StatelessWidget {
|
|||||||
_buildViewTypeOption(
|
_buildViewTypeOption(
|
||||||
context,
|
context,
|
||||||
type: ViewType.list,
|
type: ViewType.list,
|
||||||
label: 'List', //TODO: INTL
|
label: S.of(context).viewTypeListOption,
|
||||||
icon: Icons.list,
|
icon: Icons.list,
|
||||||
),
|
),
|
||||||
_buildViewTypeOption(
|
_buildViewTypeOption(
|
||||||
context,
|
context,
|
||||||
type: ViewType.grid,
|
type: ViewType.grid,
|
||||||
label: 'Grid', //TODO: INTL
|
label: S.of(context).viewTypeGridOption,
|
||||||
icon: Icons.grid_view_rounded,
|
icon: Icons.grid_view_rounded,
|
||||||
),
|
),
|
||||||
_buildViewTypeOption(
|
_buildViewTypeOption(
|
||||||
context,
|
context,
|
||||||
type: ViewType.detailed,
|
type: ViewType.detailed,
|
||||||
label: 'Detailed', //TODO: INTL
|
label: S.of(context).viewTypeDetailedOption,
|
||||||
icon: Icons.article_outlined,
|
icon: Icons.article_outlined,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -6,9 +6,9 @@
|
|||||||
"name": {}
|
"name": {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"accountSettingsAddAnotherAccount": "Add another account",
|
"accountSettingsAddAnotherAccount": "Přidat účet",
|
||||||
"@accountSettingsAddAnotherAccount": {},
|
"@accountSettingsAddAnotherAccount": {},
|
||||||
"accountSettingsTitle": "Account",
|
"accountSettingsTitle": "Účet",
|
||||||
"@accountSettingsTitle": {},
|
"@accountSettingsTitle": {},
|
||||||
"addCorrespondentPageTitle": "Nový korespondent",
|
"addCorrespondentPageTitle": "Nový korespondent",
|
||||||
"@addCorrespondentPageTitle": {},
|
"@addCorrespondentPageTitle": {},
|
||||||
@@ -102,6 +102,12 @@
|
|||||||
"@documentDetailsPageTabSimilarDocumentsLabel": {},
|
"@documentDetailsPageTabSimilarDocumentsLabel": {},
|
||||||
"documentDocumentTypePropertyLabel": "Typ dokumentu",
|
"documentDocumentTypePropertyLabel": "Typ dokumentu",
|
||||||
"@documentDocumentTypePropertyLabel": {},
|
"@documentDocumentTypePropertyLabel": {},
|
||||||
|
"documentDownloadDialogArchivedOption": "Archived (pdf)",
|
||||||
|
"@documentDownloadDialogArchivedOption": {},
|
||||||
|
"documentDownloadDialogChooseFiletype": "Choose filetype",
|
||||||
|
"@documentDownloadDialogChooseFiletype": {},
|
||||||
|
"documentDownloadDialogOriginalOption": "Original",
|
||||||
|
"@documentDownloadDialogOriginalOption": {},
|
||||||
"documentDownloadSuccessMessage": "Dokument úspěšně stažen.",
|
"documentDownloadSuccessMessage": "Dokument úspěšně stažen.",
|
||||||
"@documentDownloadSuccessMessage": {},
|
"@documentDownloadSuccessMessage": {},
|
||||||
"documentEditPageSuggestionsLabel": "Návrhy:",
|
"documentEditPageSuggestionsLabel": "Návrhy:",
|
||||||
@@ -154,13 +160,13 @@
|
|||||||
"@documentScannerPageUploadFromThisDeviceButtonLabel": {},
|
"@documentScannerPageUploadFromThisDeviceButtonLabel": {},
|
||||||
"documentSearchHistory": "Historie",
|
"documentSearchHistory": "Historie",
|
||||||
"@documentSearchHistory": {},
|
"@documentSearchHistory": {},
|
||||||
"documentSearchNoMatchesFound": "No matches found.",
|
"documentSearchNoMatchesFound": "Žádné shody.",
|
||||||
"@documentSearchNoMatchesFound": {},
|
"@documentSearchNoMatchesFound": {},
|
||||||
"documentSearchPageRemoveFromHistory": "Odstranit z historie vyhledávání?",
|
"documentSearchPageRemoveFromHistory": "Odstranit z historie vyhledávání?",
|
||||||
"@documentSearchPageRemoveFromHistory": {},
|
"@documentSearchPageRemoveFromHistory": {},
|
||||||
"documentSearchResults": "Výsledky",
|
"documentSearchResults": "Výsledky",
|
||||||
"@documentSearchResults": {},
|
"@documentSearchResults": {},
|
||||||
"documentSearchSearchDocuments": "Search documents",
|
"documentSearchSearchDocuments": "Prohledat dokumenty",
|
||||||
"@documentSearchSearchDocuments": {},
|
"@documentSearchSearchDocuments": {},
|
||||||
"documentsEmptyStateResetFilterLabel": "Zrušit",
|
"documentsEmptyStateResetFilterLabel": "Zrušit",
|
||||||
"@documentsEmptyStateResetFilterLabel": {},
|
"@documentsEmptyStateResetFilterLabel": {},
|
||||||
@@ -236,7 +242,7 @@
|
|||||||
"@editLabelPageConfirmDeletionDialogTitle": {},
|
"@editLabelPageConfirmDeletionDialogTitle": {},
|
||||||
"editLabelPageDeletionDialogText": "Dokumenty mají přiřazen tento štítek. Odstraněním štítku bude označení odstraněno. Pokračovat?",
|
"editLabelPageDeletionDialogText": "Dokumenty mají přiřazen tento štítek. Odstraněním štítku bude označení odstraněno. Pokračovat?",
|
||||||
"@editLabelPageDeletionDialogText": {},
|
"@editLabelPageDeletionDialogText": {},
|
||||||
"errorMessageAcknowledgeTasksError": "Could not acknowledge tasks.",
|
"errorMessageAcknowledgeTasksError": "Nepodařilo se potvrdit úkoly.",
|
||||||
"@errorMessageAcknowledgeTasksError": {},
|
"@errorMessageAcknowledgeTasksError": {},
|
||||||
"errorMessageAuthenticationFailed": "Přihlášení selhalo, zkuste to znovu.",
|
"errorMessageAuthenticationFailed": "Přihlášení selhalo, zkuste to znovu.",
|
||||||
"@errorMessageAuthenticationFailed": {},
|
"@errorMessageAuthenticationFailed": {},
|
||||||
@@ -258,7 +264,7 @@
|
|||||||
"@errorMessageDeleteSavedViewError": {},
|
"@errorMessageDeleteSavedViewError": {},
|
||||||
"errorMessageDeviceOffline": "Nelze stáhnout data: Nejste připojeni k internetu.",
|
"errorMessageDeviceOffline": "Nelze stáhnout data: Nejste připojeni k internetu.",
|
||||||
"@errorMessageDeviceOffline": {},
|
"@errorMessageDeviceOffline": {},
|
||||||
"errorMessageDocumentAsnQueryFailed": "Nezdařilo se přiřadit archivní sériové číslo.",
|
"errorMessageDocumentAsnQueryFailed": "Nepodařilo se přiřadit archivní sériové číslo.",
|
||||||
"@errorMessageDocumentAsnQueryFailed": {},
|
"@errorMessageDocumentAsnQueryFailed": {},
|
||||||
"errorMessageDocumentDeleteFailed": "Nezdařilo se smazat dokument, zkuste to znovu.",
|
"errorMessageDocumentDeleteFailed": "Nezdařilo se smazat dokument, zkuste to znovu.",
|
||||||
"@errorMessageDocumentDeleteFailed": {},
|
"@errorMessageDocumentDeleteFailed": {},
|
||||||
@@ -324,19 +330,19 @@
|
|||||||
"@extendedDateRangePickerAfterLabel": {},
|
"@extendedDateRangePickerAfterLabel": {},
|
||||||
"extendedDateRangePickerBeforeLabel": "Před",
|
"extendedDateRangePickerBeforeLabel": "Před",
|
||||||
"@extendedDateRangePickerBeforeLabel": {},
|
"@extendedDateRangePickerBeforeLabel": {},
|
||||||
"extendedDateRangePickerDayText": "{count, plural, zero{} one{den} few{dny} many{dnů} other{}}",
|
"extendedDateRangePickerDayText": "{count, plural, zero{dnů} one{den} few{dny} many{dnů} other{dnů}}",
|
||||||
"@extendedDateRangePickerDayText": {
|
"@extendedDateRangePickerDayText": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"count": {}
|
"count": {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"extendedDateRangePickerLastDaysLabel": "{count, plural, zero{} one{} few{} many{} other{Posledních 7 dní}}",
|
"extendedDateRangePickerLastDaysLabel": "{count, plural, zero{Posledních {count} dní} one{Včera} few{Poslední {count} dny} many{Posledních {count} dní} other{Posledních {count} dní}}",
|
||||||
"@extendedDateRangePickerLastDaysLabel": {
|
"@extendedDateRangePickerLastDaysLabel": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"count": {}
|
"count": {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"extendedDateRangePickerLastMonthsLabel": "{count, plural, zero{} one{} few{} many{} other{Minulý měsíc}}",
|
"extendedDateRangePickerLastMonthsLabel": "{count, plural, zero{Minulých {count} měsíců} one{Minulý měsíc} few{Minulé {count} měsíce} many{Minulých {count} měsíců} other{Minulých {count} měsíců}}",
|
||||||
"@extendedDateRangePickerLastMonthsLabel": {
|
"@extendedDateRangePickerLastMonthsLabel": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"count": {}
|
"count": {}
|
||||||
@@ -344,31 +350,31 @@
|
|||||||
},
|
},
|
||||||
"extendedDateRangePickerLastText": "Poslední",
|
"extendedDateRangePickerLastText": "Poslední",
|
||||||
"@extendedDateRangePickerLastText": {},
|
"@extendedDateRangePickerLastText": {},
|
||||||
"extendedDateRangePickerLastWeeksLabel": "{count, plural, zero{} one{minulý týden} few{poslední {count} týdny} many{posledních {count} týdnů} other{}}",
|
"extendedDateRangePickerLastWeeksLabel": "{count, plural, zero{Posledních {count} týdnů} one{Minulý týden} few{Poslední {count} týdny} many{Posledních {count} týdnů} other{Posledních {count} týdnů}}",
|
||||||
"@extendedDateRangePickerLastWeeksLabel": {
|
"@extendedDateRangePickerLastWeeksLabel": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"count": {}
|
"count": {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"extendedDateRangePickerLastYearsLabel": "{count, plural, zero{} one{} few{} many{} other{Minulý rok}}",
|
"extendedDateRangePickerLastYearsLabel": "{count, plural, zero{Minulých {count} let} one{Minulý rok} few{Minulé {count} roky} many{Minulých {count} let} other{Minulých {count} let}}",
|
||||||
"@extendedDateRangePickerLastYearsLabel": {
|
"@extendedDateRangePickerLastYearsLabel": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"count": {}
|
"count": {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"extendedDateRangePickerMonthText": "{count, plural, zero{} one{měsíc} few{mesíce} many{měsíců} other{}}",
|
"extendedDateRangePickerMonthText": "{count, plural, zero{měsíců} one{měsíc} few{mesíce} many{měsíců} other{měsíců}}",
|
||||||
"@extendedDateRangePickerMonthText": {
|
"@extendedDateRangePickerMonthText": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"count": {}
|
"count": {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"extendedDateRangePickerWeekText": "{count, plural, zero{} one{týden} few{týdny} many{týdnů} other{}}",
|
"extendedDateRangePickerWeekText": "{count, plural, zero{týdnů} one{týden} few{týdny} many{týdnů} other{týdnů}}",
|
||||||
"@extendedDateRangePickerWeekText": {
|
"@extendedDateRangePickerWeekText": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"count": {}
|
"count": {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"extendedDateRangePickerYearText": "{count, plural, zero{} one{rok} few{roky} many{let} other{}}",
|
"extendedDateRangePickerYearText": "{count, plural, zero{let} one{rok} few{roky} many{let} other{let}}",
|
||||||
"@extendedDateRangePickerYearText": {
|
"@extendedDateRangePickerYearText": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"count": {}
|
"count": {}
|
||||||
@@ -378,7 +384,7 @@
|
|||||||
"@genericAcknowledgeLabel": {},
|
"@genericAcknowledgeLabel": {},
|
||||||
"genericActionCancelLabel": "Zrušit",
|
"genericActionCancelLabel": "Zrušit",
|
||||||
"@genericActionCancelLabel": {},
|
"@genericActionCancelLabel": {},
|
||||||
"genericActionCloseLabel": "Close",
|
"genericActionCloseLabel": "Zavřít",
|
||||||
"@genericActionCloseLabel": {},
|
"@genericActionCloseLabel": {},
|
||||||
"genericActionCreateLabel": "Vytvořit",
|
"genericActionCreateLabel": "Vytvořit",
|
||||||
"@genericActionCreateLabel": {},
|
"@genericActionCreateLabel": {},
|
||||||
@@ -398,11 +404,11 @@
|
|||||||
"@genericActionUploadLabel": {},
|
"@genericActionUploadLabel": {},
|
||||||
"genericMessageOfflineText": "Jste offline.",
|
"genericMessageOfflineText": "Jste offline.",
|
||||||
"@genericMessageOfflineText": {},
|
"@genericMessageOfflineText": {},
|
||||||
"inboxActionAssignAsn": "Assign ASN",
|
"inboxActionAssignAsn": "Přiřadit ASČ",
|
||||||
"@inboxActionAssignAsn": {},
|
"@inboxActionAssignAsn": {},
|
||||||
"inboxActionDeleteDocument": "Delete document",
|
"inboxActionDeleteDocument": "Smazat dokument",
|
||||||
"@inboxActionDeleteDocument": {},
|
"@inboxActionDeleteDocument": {},
|
||||||
"inboxPageAssignAsnLabel": "Assign ASN",
|
"inboxPageAssignAsnLabel": "Přiřadit ASČ",
|
||||||
"@inboxPageAssignAsnLabel": {},
|
"@inboxPageAssignAsnLabel": {},
|
||||||
"inboxPageDocumentRemovedMessageText": "Dokument odstraněn z inboxu.",
|
"inboxPageDocumentRemovedMessageText": "Dokument odstraněn z inboxu.",
|
||||||
"@inboxPageDocumentRemovedMessageText": {},
|
"@inboxPageDocumentRemovedMessageText": {},
|
||||||
@@ -418,13 +424,13 @@
|
|||||||
"@inboxPageNoNewDocumentsRefreshLabel": {},
|
"@inboxPageNoNewDocumentsRefreshLabel": {},
|
||||||
"inboxPageNoNewDocumentsText": "Nemáte neshlédnuté dokumenty.",
|
"inboxPageNoNewDocumentsText": "Nemáte neshlédnuté dokumenty.",
|
||||||
"@inboxPageNoNewDocumentsText": {},
|
"@inboxPageNoNewDocumentsText": {},
|
||||||
"inboxPageQuickActionsLabel": "Quick Action",
|
"inboxPageQuickActionsLabel": "Rychlá akce",
|
||||||
"@inboxPageQuickActionsLabel": {},
|
"@inboxPageQuickActionsLabel": {},
|
||||||
"inboxPageSuggestionSuccessfullyAppliedMessage": "Suggestion successfully applied.",
|
"inboxPageSuggestionSuccessfullyAppliedMessage": "Návhr úspěšně použit.",
|
||||||
"@inboxPageSuggestionSuccessfullyAppliedMessage": {},
|
"@inboxPageSuggestionSuccessfullyAppliedMessage": {},
|
||||||
"inboxPageTodayText": "Dnes",
|
"inboxPageTodayText": "Dnes",
|
||||||
"@inboxPageTodayText": {},
|
"@inboxPageTodayText": {},
|
||||||
"inboxPageUndoRemoveText": "VRÁTIT",
|
"inboxPageUndoRemoveText": "Vrátit",
|
||||||
"@inboxPageUndoRemoveText": {},
|
"@inboxPageUndoRemoveText": {},
|
||||||
"inboxPageUnseenText": "neshlédnuté",
|
"inboxPageUnseenText": "neshlédnuté",
|
||||||
"@inboxPageUnseenText": {},
|
"@inboxPageUnseenText": {},
|
||||||
@@ -498,19 +504,19 @@
|
|||||||
"@loginPageReachabilityConnectionTimeoutText": {},
|
"@loginPageReachabilityConnectionTimeoutText": {},
|
||||||
"loginPageReachabilityInvalidClientCertificateConfigurationText": "Špatné nebo chybějící heslo certifikátu.",
|
"loginPageReachabilityInvalidClientCertificateConfigurationText": "Špatné nebo chybějící heslo certifikátu.",
|
||||||
"@loginPageReachabilityInvalidClientCertificateConfigurationText": {},
|
"@loginPageReachabilityInvalidClientCertificateConfigurationText": {},
|
||||||
"loginPageReachabilityMissingClientCertificateText": "A client certificate was expected but not sent. Please provide a certificate.",
|
"loginPageReachabilityMissingClientCertificateText": "Byl očekáván certifikát klienta, ale nebyl dodán. Dodejte prosím certifikát.",
|
||||||
"@loginPageReachabilityMissingClientCertificateText": {},
|
"@loginPageReachabilityMissingClientCertificateText": {},
|
||||||
"loginPageReachabilityNotReachableText": "Could not establish a connection to the server.",
|
"loginPageReachabilityNotReachableText": "Nepodařilo se navázat spojení se serverem.",
|
||||||
"@loginPageReachabilityNotReachableText": {},
|
"@loginPageReachabilityNotReachableText": {},
|
||||||
"loginPageReachabilitySuccessText": "Připojení úspěšně vytvořeno.",
|
"loginPageReachabilitySuccessText": "Připojení úspěšně vytvořeno.",
|
||||||
"@loginPageReachabilitySuccessText": {},
|
"@loginPageReachabilitySuccessText": {},
|
||||||
"loginPageReachabilityUnresolvedHostText": "Host could not be resolved. Please check the server address and your internet connection. ",
|
"loginPageReachabilityUnresolvedHostText": "Adresa nemohla být rozpoznána. Zkontrolujte prosím adresu serveru a své internetové připojení.",
|
||||||
"@loginPageReachabilityUnresolvedHostText": {},
|
"@loginPageReachabilityUnresolvedHostText": {},
|
||||||
"loginPageServerUrlFieldLabel": "'Adresa serveru",
|
"loginPageServerUrlFieldLabel": "'Adresa serveru",
|
||||||
"@loginPageServerUrlFieldLabel": {},
|
"@loginPageServerUrlFieldLabel": {},
|
||||||
"loginPageServerUrlValidatorMessageInvalidAddressText": "Neplatná adresa",
|
"loginPageServerUrlValidatorMessageInvalidAddressText": "Neplatná adresa",
|
||||||
"@loginPageServerUrlValidatorMessageInvalidAddressText": {},
|
"@loginPageServerUrlValidatorMessageInvalidAddressText": {},
|
||||||
"loginPageServerUrlValidatorMessageMissingSchemeText": "Server address must include a scheme.",
|
"loginPageServerUrlValidatorMessageMissingSchemeText": "Adresa serveru musí obsahovat schéma.",
|
||||||
"@loginPageServerUrlValidatorMessageMissingSchemeText": {},
|
"@loginPageServerUrlValidatorMessageMissingSchemeText": {},
|
||||||
"loginPageServerUrlValidatorMessageRequiredText": "Adresa serveru nesmí být prázdná.",
|
"loginPageServerUrlValidatorMessageRequiredText": "Adresa serveru nesmí být prázdná.",
|
||||||
"@loginPageServerUrlValidatorMessageRequiredText": {},
|
"@loginPageServerUrlValidatorMessageRequiredText": {},
|
||||||
@@ -530,29 +536,29 @@
|
|||||||
"@loginPageUsernameLabel": {},
|
"@loginPageUsernameLabel": {},
|
||||||
"loginPageUsernameValidatorMessageText": "Jméno uživatele nesmí být prázdné.",
|
"loginPageUsernameValidatorMessageText": "Jméno uživatele nesmí být prázdné.",
|
||||||
"@loginPageUsernameValidatorMessageText": {},
|
"@loginPageUsernameValidatorMessageText": {},
|
||||||
"matchingAlgorithmAllDescription": "Document contains all of these words",
|
"matchingAlgorithmAllDescription": "Dokument obsahuje všechna tato slova",
|
||||||
"@matchingAlgorithmAllDescription": {},
|
"@matchingAlgorithmAllDescription": {},
|
||||||
"matchingAlgorithmAllName": "Vše",
|
"matchingAlgorithmAllName": "Vše",
|
||||||
"@matchingAlgorithmAllName": {},
|
"@matchingAlgorithmAllName": {},
|
||||||
"matchingAlgorithmAnyDescription": "Document contains any of these words",
|
"matchingAlgorithmAnyDescription": "Dokument obsahuje některé z těchto slov",
|
||||||
"@matchingAlgorithmAnyDescription": {},
|
"@matchingAlgorithmAnyDescription": {},
|
||||||
"matchingAlgorithmAnyName": "Jakékoliv slovo",
|
"matchingAlgorithmAnyName": "Jakékoliv slovo",
|
||||||
"@matchingAlgorithmAnyName": {},
|
"@matchingAlgorithmAnyName": {},
|
||||||
"matchingAlgorithmAutoDescription": "Learn matching automatically",
|
"matchingAlgorithmAutoDescription": "Učit přiřazování automaticky",
|
||||||
"@matchingAlgorithmAutoDescription": {},
|
"@matchingAlgorithmAutoDescription": {},
|
||||||
"matchingAlgorithmAutoName": "Auto",
|
"matchingAlgorithmAutoName": "Automatický",
|
||||||
"@matchingAlgorithmAutoName": {},
|
"@matchingAlgorithmAutoName": {},
|
||||||
"matchingAlgorithmExactDescription": "Document contains this string",
|
"matchingAlgorithmExactDescription": "Dokument obsahuje tento řetězec",
|
||||||
"@matchingAlgorithmExactDescription": {},
|
"@matchingAlgorithmExactDescription": {},
|
||||||
"matchingAlgorithmExactName": "Exact",
|
"matchingAlgorithmExactName": "Přesný",
|
||||||
"@matchingAlgorithmExactName": {},
|
"@matchingAlgorithmExactName": {},
|
||||||
"matchingAlgorithmFuzzyDescription": "Document contains a word similar to this word",
|
"matchingAlgorithmFuzzyDescription": "Dokument obsahuje slovo podobné tomuto slovu",
|
||||||
"@matchingAlgorithmFuzzyDescription": {},
|
"@matchingAlgorithmFuzzyDescription": {},
|
||||||
"matchingAlgorithmFuzzyName": "Fuzzy",
|
"matchingAlgorithmFuzzyName": "Podobný",
|
||||||
"@matchingAlgorithmFuzzyName": {},
|
"@matchingAlgorithmFuzzyName": {},
|
||||||
"matchingAlgorithmRegexDescription": "Document matches this regular expression",
|
"matchingAlgorithmRegexDescription": "Dokument odpovídá regulárnímu výrazu",
|
||||||
"@matchingAlgorithmRegexDescription": {},
|
"@matchingAlgorithmRegexDescription": {},
|
||||||
"matchingAlgorithmRegexName": "Regular Expression",
|
"matchingAlgorithmRegexName": "Regulární výraz",
|
||||||
"@matchingAlgorithmRegexName": {},
|
"@matchingAlgorithmRegexName": {},
|
||||||
"offlineWidgetText": "Nezdařilo se vytvořit připojení k internetu.",
|
"offlineWidgetText": "Nezdařilo se vytvořit připojení k internetu.",
|
||||||
"@offlineWidgetText": {},
|
"@offlineWidgetText": {},
|
||||||
@@ -572,7 +578,7 @@
|
|||||||
"@savedViewNameLabel": {},
|
"@savedViewNameLabel": {},
|
||||||
"savedViewsEmptyStateText": "Vytvoře si různé náhledy pro rychlé filtrování dokumentů.",
|
"savedViewsEmptyStateText": "Vytvoře si různé náhledy pro rychlé filtrování dokumentů.",
|
||||||
"@savedViewsEmptyStateText": {},
|
"@savedViewsEmptyStateText": {},
|
||||||
"savedViewsFiltersSetCount": "{count, plural, zero{{count} filters set} one{{count} filter set} other{{count} filters set}}",
|
"savedViewsFiltersSetCount": "{count, plural, zero{{count} filtrů nastaveno} one{{count} filtr nastaven} few{{count} filtry nastaveny} many{{count} filtrů nastaveno} other{{count} filtrů nastaveno}}",
|
||||||
"@savedViewsFiltersSetCount": {
|
"@savedViewsFiltersSetCount": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"count": {}
|
"count": {}
|
||||||
@@ -584,14 +590,16 @@
|
|||||||
"@savedViewShowOnDashboardLabel": {},
|
"@savedViewShowOnDashboardLabel": {},
|
||||||
"savedViewsLabel": "Uložené náhledy",
|
"savedViewsLabel": "Uložené náhledy",
|
||||||
"@savedViewsLabel": {},
|
"@savedViewsLabel": {},
|
||||||
"scannerPageClearAllLabel": "Clear all",
|
"scannerPageClearAllLabel": "Smazat všechny",
|
||||||
"@scannerPageClearAllLabel": {},
|
"@scannerPageClearAllLabel": {},
|
||||||
"scannerPageImagePreviewTitle": "Sken",
|
"scannerPageImagePreviewTitle": "Sken",
|
||||||
"@scannerPageImagePreviewTitle": {},
|
"@scannerPageImagePreviewTitle": {},
|
||||||
"scannerPagePreviewLabel": "Preview",
|
"scannerPagePreviewLabel": "Náhled",
|
||||||
"@scannerPagePreviewLabel": {},
|
"@scannerPagePreviewLabel": {},
|
||||||
"scannerPageUploadLabel": "Upload",
|
"scannerPageUploadLabel": "Nahrát",
|
||||||
"@scannerPageUploadLabel": {},
|
"@scannerPageUploadLabel": {},
|
||||||
|
"scrollToTopLabel": "Scroll to top",
|
||||||
|
"@scrollToTopLabel": {},
|
||||||
"serverInformationPaperlessVersionText": "Verze Paperless serveru",
|
"serverInformationPaperlessVersionText": "Verze Paperless serveru",
|
||||||
"@serverInformationPaperlessVersionText": {},
|
"@serverInformationPaperlessVersionText": {},
|
||||||
"settingsPageAppearanceSettingDarkThemeLabel": "Tmavý vzhled",
|
"settingsPageAppearanceSettingDarkThemeLabel": "Tmavý vzhled",
|
||||||
@@ -606,9 +614,9 @@
|
|||||||
"@settingsPageApplicationSettingsDescriptionText": {},
|
"@settingsPageApplicationSettingsDescriptionText": {},
|
||||||
"settingsPageApplicationSettingsLabel": "Aplikace",
|
"settingsPageApplicationSettingsLabel": "Aplikace",
|
||||||
"@settingsPageApplicationSettingsLabel": {},
|
"@settingsPageApplicationSettingsLabel": {},
|
||||||
"settingsPageColorSchemeSettingDialogDescription": "Choose between a classic color scheme inspired by a traditional Paperless green or use the dynamic color scheme based on your system theme.",
|
"settingsPageColorSchemeSettingDialogDescription": "Vyberte mezi klasickým barevným schématem inpirovaným Paperless zelenou nebo použijte dynamické barevné schéma, založené na barvách běžícího systému.",
|
||||||
"@settingsPageColorSchemeSettingDialogDescription": {},
|
"@settingsPageColorSchemeSettingDialogDescription": {},
|
||||||
"settingsPageColorSchemeSettingDynamicThemeingVersionMismatchWarning": "Dynamic theming is only supported for devices running Android 12 and above. Selecting the 'Dynamic' option might not have any effect depending on your OS implementation.",
|
"settingsPageColorSchemeSettingDynamicThemeingVersionMismatchWarning": "Dynamické rozpoznávání barev podporují pouze přístroje se systémem Android 12 a vyšším. Vybrání dynamických barev na starších systémech nebude mít pravděpodobně žádný efekt.",
|
||||||
"@settingsPageColorSchemeSettingDynamicThemeingVersionMismatchWarning": {},
|
"@settingsPageColorSchemeSettingDynamicThemeingVersionMismatchWarning": {},
|
||||||
"settingsPageColorSchemeSettingLabel": "Barvy",
|
"settingsPageColorSchemeSettingLabel": "Barvy",
|
||||||
"@settingsPageColorSchemeSettingLabel": {},
|
"@settingsPageColorSchemeSettingLabel": {},
|
||||||
@@ -646,12 +654,18 @@
|
|||||||
"@tagInboxTagPropertyLabel": {},
|
"@tagInboxTagPropertyLabel": {},
|
||||||
"uploadPageAutomaticallInferredFieldsHintText": "Pokud specifikuješ hodnoty pro tato pole, paperless instance nebude automaticky přiřazovat naučené hodnoty. Pokud mají být tato pole automaticky vyplňována, nevyplňujte zde nic.",
|
"uploadPageAutomaticallInferredFieldsHintText": "Pokud specifikuješ hodnoty pro tato pole, paperless instance nebude automaticky přiřazovat naučené hodnoty. Pokud mají být tato pole automaticky vyplňována, nevyplňujte zde nic.",
|
||||||
"@uploadPageAutomaticallInferredFieldsHintText": {},
|
"@uploadPageAutomaticallInferredFieldsHintText": {},
|
||||||
"verifyIdentityPageDescriptionText": "Use the configured biometric factor to authenticate and unlock your documents.",
|
"verifyIdentityPageDescriptionText": "Použít nastavené biometrické údaje pro ověření a odemčení dokumentů.",
|
||||||
"@verifyIdentityPageDescriptionText": {},
|
"@verifyIdentityPageDescriptionText": {},
|
||||||
"verifyIdentityPageLogoutButtonLabel": "Odpojit",
|
"verifyIdentityPageLogoutButtonLabel": "Odpojit",
|
||||||
"@verifyIdentityPageLogoutButtonLabel": {},
|
"@verifyIdentityPageLogoutButtonLabel": {},
|
||||||
"verifyIdentityPageTitle": "Ověř svou identitu",
|
"verifyIdentityPageTitle": "Ověř svou identitu",
|
||||||
"@verifyIdentityPageTitle": {},
|
"@verifyIdentityPageTitle": {},
|
||||||
"verifyIdentityPageVerifyIdentityButtonLabel": "Ověřit identitu",
|
"verifyIdentityPageVerifyIdentityButtonLabel": "Ověřit identitu",
|
||||||
"@verifyIdentityPageVerifyIdentityButtonLabel": {}
|
"@verifyIdentityPageVerifyIdentityButtonLabel": {},
|
||||||
|
"viewTypeDetailedOption": "Detailed",
|
||||||
|
"@viewTypeDetailedOption": {},
|
||||||
|
"viewTypeGridOption": "Grid",
|
||||||
|
"@viewTypeGridOption": {},
|
||||||
|
"viewTypeListOption": "List",
|
||||||
|
"@viewTypeListOption": {}
|
||||||
}
|
}
|
||||||
@@ -102,6 +102,12 @@
|
|||||||
"@documentDetailsPageTabSimilarDocumentsLabel": {},
|
"@documentDetailsPageTabSimilarDocumentsLabel": {},
|
||||||
"documentDocumentTypePropertyLabel": "Dokumenttyp",
|
"documentDocumentTypePropertyLabel": "Dokumenttyp",
|
||||||
"@documentDocumentTypePropertyLabel": {},
|
"@documentDocumentTypePropertyLabel": {},
|
||||||
|
"documentDownloadDialogArchivedOption": "Archiviert (pdf)",
|
||||||
|
"@documentDownloadDialogArchivedOption": {},
|
||||||
|
"documentDownloadDialogChooseFiletype": "Wähle Dateityp",
|
||||||
|
"@documentDownloadDialogChooseFiletype": {},
|
||||||
|
"documentDownloadDialogOriginalOption": "Original",
|
||||||
|
"@documentDownloadDialogOriginalOption": {},
|
||||||
"documentDownloadSuccessMessage": "Dokument erfolgreich heruntergeladen.",
|
"documentDownloadSuccessMessage": "Dokument erfolgreich heruntergeladen.",
|
||||||
"@documentDownloadSuccessMessage": {},
|
"@documentDownloadSuccessMessage": {},
|
||||||
"documentEditPageSuggestionsLabel": "Vorschläge: ",
|
"documentEditPageSuggestionsLabel": "Vorschläge: ",
|
||||||
@@ -592,6 +598,8 @@
|
|||||||
"@scannerPagePreviewLabel": {},
|
"@scannerPagePreviewLabel": {},
|
||||||
"scannerPageUploadLabel": "Hochladen",
|
"scannerPageUploadLabel": "Hochladen",
|
||||||
"@scannerPageUploadLabel": {},
|
"@scannerPageUploadLabel": {},
|
||||||
|
"scrollToTopLabel": "Zum Anfang",
|
||||||
|
"@scrollToTopLabel": {},
|
||||||
"serverInformationPaperlessVersionText": "Paperless Server-Version",
|
"serverInformationPaperlessVersionText": "Paperless Server-Version",
|
||||||
"@serverInformationPaperlessVersionText": {},
|
"@serverInformationPaperlessVersionText": {},
|
||||||
"settingsPageAppearanceSettingDarkThemeLabel": "Dunkler Modus",
|
"settingsPageAppearanceSettingDarkThemeLabel": "Dunkler Modus",
|
||||||
@@ -653,5 +661,11 @@
|
|||||||
"verifyIdentityPageTitle": "Verifiziere deine Identität",
|
"verifyIdentityPageTitle": "Verifiziere deine Identität",
|
||||||
"@verifyIdentityPageTitle": {},
|
"@verifyIdentityPageTitle": {},
|
||||||
"verifyIdentityPageVerifyIdentityButtonLabel": "Identität verifizieren",
|
"verifyIdentityPageVerifyIdentityButtonLabel": "Identität verifizieren",
|
||||||
"@verifyIdentityPageVerifyIdentityButtonLabel": {}
|
"@verifyIdentityPageVerifyIdentityButtonLabel": {},
|
||||||
|
"viewTypeDetailedOption": "Detailliert",
|
||||||
|
"@viewTypeDetailedOption": {},
|
||||||
|
"viewTypeGridOption": "Raster",
|
||||||
|
"@viewTypeGridOption": {},
|
||||||
|
"viewTypeListOption": "Liste",
|
||||||
|
"@viewTypeListOption": {}
|
||||||
}
|
}
|
||||||
@@ -102,6 +102,12 @@
|
|||||||
"@documentDetailsPageTabSimilarDocumentsLabel": {},
|
"@documentDetailsPageTabSimilarDocumentsLabel": {},
|
||||||
"documentDocumentTypePropertyLabel": "Document Type",
|
"documentDocumentTypePropertyLabel": "Document Type",
|
||||||
"@documentDocumentTypePropertyLabel": {},
|
"@documentDocumentTypePropertyLabel": {},
|
||||||
|
"documentDownloadDialogArchivedOption": "Archived (pdf)",
|
||||||
|
"@documentDownloadDialogArchivedOption": {},
|
||||||
|
"documentDownloadDialogChooseFiletype": "Choose filetype",
|
||||||
|
"@documentDownloadDialogChooseFiletype": {},
|
||||||
|
"documentDownloadDialogOriginalOption": "Original",
|
||||||
|
"@documentDownloadDialogOriginalOption": {},
|
||||||
"documentDownloadSuccessMessage": "Document successfully downloaded.",
|
"documentDownloadSuccessMessage": "Document successfully downloaded.",
|
||||||
"@documentDownloadSuccessMessage": {},
|
"@documentDownloadSuccessMessage": {},
|
||||||
"documentEditPageSuggestionsLabel": "Suggestions: ",
|
"documentEditPageSuggestionsLabel": "Suggestions: ",
|
||||||
@@ -592,6 +598,8 @@
|
|||||||
"@scannerPagePreviewLabel": {},
|
"@scannerPagePreviewLabel": {},
|
||||||
"scannerPageUploadLabel": "Upload",
|
"scannerPageUploadLabel": "Upload",
|
||||||
"@scannerPageUploadLabel": {},
|
"@scannerPageUploadLabel": {},
|
||||||
|
"scrollToTopLabel": "Scroll to top",
|
||||||
|
"@scrollToTopLabel": {},
|
||||||
"serverInformationPaperlessVersionText": "Paperless server version",
|
"serverInformationPaperlessVersionText": "Paperless server version",
|
||||||
"@serverInformationPaperlessVersionText": {},
|
"@serverInformationPaperlessVersionText": {},
|
||||||
"settingsPageAppearanceSettingDarkThemeLabel": "Dark Theme",
|
"settingsPageAppearanceSettingDarkThemeLabel": "Dark Theme",
|
||||||
@@ -653,5 +661,11 @@
|
|||||||
"verifyIdentityPageTitle": "Verify your identity",
|
"verifyIdentityPageTitle": "Verify your identity",
|
||||||
"@verifyIdentityPageTitle": {},
|
"@verifyIdentityPageTitle": {},
|
||||||
"verifyIdentityPageVerifyIdentityButtonLabel": "Verify Identity",
|
"verifyIdentityPageVerifyIdentityButtonLabel": "Verify Identity",
|
||||||
"@verifyIdentityPageVerifyIdentityButtonLabel": {}
|
"@verifyIdentityPageVerifyIdentityButtonLabel": {},
|
||||||
|
"viewTypeDetailedOption": "Detailed",
|
||||||
|
"@viewTypeDetailedOption": {},
|
||||||
|
"viewTypeGridOption": "Grid",
|
||||||
|
"@viewTypeGridOption": {},
|
||||||
|
"viewTypeListOption": "List",
|
||||||
|
"@viewTypeListOption": {}
|
||||||
}
|
}
|
||||||
@@ -102,6 +102,12 @@
|
|||||||
"@documentDetailsPageTabSimilarDocumentsLabel": {},
|
"@documentDetailsPageTabSimilarDocumentsLabel": {},
|
||||||
"documentDocumentTypePropertyLabel": "Rodzaj dokumentu",
|
"documentDocumentTypePropertyLabel": "Rodzaj dokumentu",
|
||||||
"@documentDocumentTypePropertyLabel": {},
|
"@documentDocumentTypePropertyLabel": {},
|
||||||
|
"documentDownloadDialogArchivedOption": "Archived (pdf)",
|
||||||
|
"@documentDownloadDialogArchivedOption": {},
|
||||||
|
"documentDownloadDialogChooseFiletype": "Choose filetype",
|
||||||
|
"@documentDownloadDialogChooseFiletype": {},
|
||||||
|
"documentDownloadDialogOriginalOption": "Original",
|
||||||
|
"@documentDownloadDialogOriginalOption": {},
|
||||||
"documentDownloadSuccessMessage": "Document successfully downloaded.",
|
"documentDownloadSuccessMessage": "Document successfully downloaded.",
|
||||||
"@documentDownloadSuccessMessage": {},
|
"@documentDownloadSuccessMessage": {},
|
||||||
"documentEditPageSuggestionsLabel": "Suggestions: ",
|
"documentEditPageSuggestionsLabel": "Suggestions: ",
|
||||||
@@ -592,6 +598,8 @@
|
|||||||
"@scannerPagePreviewLabel": {},
|
"@scannerPagePreviewLabel": {},
|
||||||
"scannerPageUploadLabel": "Upload",
|
"scannerPageUploadLabel": "Upload",
|
||||||
"@scannerPageUploadLabel": {},
|
"@scannerPageUploadLabel": {},
|
||||||
|
"scrollToTopLabel": "Scroll to top",
|
||||||
|
"@scrollToTopLabel": {},
|
||||||
"serverInformationPaperlessVersionText": "Wersja serwera Paperless",
|
"serverInformationPaperlessVersionText": "Wersja serwera Paperless",
|
||||||
"@serverInformationPaperlessVersionText": {},
|
"@serverInformationPaperlessVersionText": {},
|
||||||
"settingsPageAppearanceSettingDarkThemeLabel": "Motyw ciemny",
|
"settingsPageAppearanceSettingDarkThemeLabel": "Motyw ciemny",
|
||||||
@@ -653,5 +661,11 @@
|
|||||||
"verifyIdentityPageTitle": "Verify your identity",
|
"verifyIdentityPageTitle": "Verify your identity",
|
||||||
"@verifyIdentityPageTitle": {},
|
"@verifyIdentityPageTitle": {},
|
||||||
"verifyIdentityPageVerifyIdentityButtonLabel": "Verify Identity",
|
"verifyIdentityPageVerifyIdentityButtonLabel": "Verify Identity",
|
||||||
"@verifyIdentityPageVerifyIdentityButtonLabel": {}
|
"@verifyIdentityPageVerifyIdentityButtonLabel": {},
|
||||||
|
"viewTypeDetailedOption": "Detailed",
|
||||||
|
"@viewTypeDetailedOption": {},
|
||||||
|
"viewTypeGridOption": "Grid",
|
||||||
|
"@viewTypeGridOption": {},
|
||||||
|
"viewTypeListOption": "List",
|
||||||
|
"@viewTypeListOption": {}
|
||||||
}
|
}
|
||||||
@@ -102,6 +102,12 @@
|
|||||||
"@documentDetailsPageTabSimilarDocumentsLabel": {},
|
"@documentDetailsPageTabSimilarDocumentsLabel": {},
|
||||||
"documentDocumentTypePropertyLabel": "Döküman tipi",
|
"documentDocumentTypePropertyLabel": "Döküman tipi",
|
||||||
"@documentDocumentTypePropertyLabel": {},
|
"@documentDocumentTypePropertyLabel": {},
|
||||||
|
"documentDownloadDialogArchivedOption": "Archived (pdf)",
|
||||||
|
"@documentDownloadDialogArchivedOption": {},
|
||||||
|
"documentDownloadDialogChooseFiletype": "Choose filetype",
|
||||||
|
"@documentDownloadDialogChooseFiletype": {},
|
||||||
|
"documentDownloadDialogOriginalOption": "Original",
|
||||||
|
"@documentDownloadDialogOriginalOption": {},
|
||||||
"documentDownloadSuccessMessage": "Döküman başarıyla indirildi.",
|
"documentDownloadSuccessMessage": "Döküman başarıyla indirildi.",
|
||||||
"@documentDownloadSuccessMessage": {},
|
"@documentDownloadSuccessMessage": {},
|
||||||
"documentEditPageSuggestionsLabel": "Öneriler:",
|
"documentEditPageSuggestionsLabel": "Öneriler:",
|
||||||
@@ -592,6 +598,8 @@
|
|||||||
"@scannerPagePreviewLabel": {},
|
"@scannerPagePreviewLabel": {},
|
||||||
"scannerPageUploadLabel": "Upload",
|
"scannerPageUploadLabel": "Upload",
|
||||||
"@scannerPageUploadLabel": {},
|
"@scannerPageUploadLabel": {},
|
||||||
|
"scrollToTopLabel": "Scroll to top",
|
||||||
|
"@scrollToTopLabel": {},
|
||||||
"serverInformationPaperlessVersionText": "Paperless sunucu versiyonu",
|
"serverInformationPaperlessVersionText": "Paperless sunucu versiyonu",
|
||||||
"@serverInformationPaperlessVersionText": {},
|
"@serverInformationPaperlessVersionText": {},
|
||||||
"settingsPageAppearanceSettingDarkThemeLabel": "Koyu Tema",
|
"settingsPageAppearanceSettingDarkThemeLabel": "Koyu Tema",
|
||||||
@@ -653,5 +661,11 @@
|
|||||||
"verifyIdentityPageTitle": "Kimliğinizi doğrulayın",
|
"verifyIdentityPageTitle": "Kimliğinizi doğrulayın",
|
||||||
"@verifyIdentityPageTitle": {},
|
"@verifyIdentityPageTitle": {},
|
||||||
"verifyIdentityPageVerifyIdentityButtonLabel": "Kimliği Doğrula",
|
"verifyIdentityPageVerifyIdentityButtonLabel": "Kimliği Doğrula",
|
||||||
"@verifyIdentityPageVerifyIdentityButtonLabel": {}
|
"@verifyIdentityPageVerifyIdentityButtonLabel": {},
|
||||||
|
"viewTypeDetailedOption": "Detailed",
|
||||||
|
"@viewTypeDetailedOption": {},
|
||||||
|
"viewTypeGridOption": "Grid",
|
||||||
|
"@viewTypeGridOption": {},
|
||||||
|
"viewTypeListOption": "List",
|
||||||
|
"@viewTypeListOption": {}
|
||||||
}
|
}
|
||||||
@@ -16,7 +16,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
|
|||||||
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
||||||
# Read more about iOS versioning at
|
# Read more about iOS versioning at
|
||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
version: 2.0.3+20
|
version: 2.0.4+21
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=2.19.0 <4.0.0'
|
sdk: '>=2.19.0 <4.0.0'
|
||||||
|
|||||||
Reference in New Issue
Block a user