mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-06 15: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>(
|
||||
context: context,
|
||||
builder: (context) => RadioSettingsDialog(
|
||||
titleText: "Choose filetype", //TODO: INTL
|
||||
titleText: S.of(context).documentDownloadDialogChooseFiletype,
|
||||
options: [
|
||||
RadioOption(
|
||||
value: true,
|
||||
label:
|
||||
"Original (${meta.originalMimeType.split("/").last})", //TODO: INTL
|
||||
),
|
||||
value: true,
|
||||
label: S.of(context).documentDownloadDialogOriginalOption +
|
||||
" (${meta.originalMimeType.split("/").last})"),
|
||||
RadioOption(
|
||||
value: false,
|
||||
label: "Archived (pdf)", //TODO: INTL
|
||||
label: S.of(context).documentDownloadDialogArchivedOption,
|
||||
),
|
||||
],
|
||||
initialValue: false,
|
||||
|
||||
Reference in New Issue
Block a user