mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-24 18:38:48 +01:00
Update user messaging
This commit is contained in:
parent
19b89cb4e7
commit
27fce742f6
3 changed files with 11 additions and 4 deletions
|
@ -451,9 +451,9 @@
|
|||
"@connectButtonLabel": {
|
||||
"description": "Label of the connect button"
|
||||
},
|
||||
"rootPickerSkipConfirmationDialogContent": "All your files will be included",
|
||||
"@rootPickerSkipConfirmationDialogContent": {
|
||||
"description": "Inform user what happens after skipping root picker"
|
||||
"rootPickerSkipConfirmationDialogContent2": "All your files will be included. This may increase the memory usage and degrade performance",
|
||||
"@rootPickerSkipConfirmationDialogContent2": {
|
||||
"description": "Warn user not to include all files in their server"
|
||||
},
|
||||
"megapixelCount": "{count}MP",
|
||||
"@megapixelCount": {
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
"settingsExperimentalTitle",
|
||||
"settingsExperimentalDescription",
|
||||
"settingsExperimentalPageTitle",
|
||||
"rootPickerSkipConfirmationDialogContent2",
|
||||
"sortOptionManualLabel",
|
||||
"helpButtonLabel",
|
||||
"collectionSharingLabel",
|
||||
|
@ -85,6 +86,7 @@
|
|||
"settingsExperimentalTitle",
|
||||
"settingsExperimentalDescription",
|
||||
"settingsExperimentalPageTitle",
|
||||
"rootPickerSkipConfirmationDialogContent2",
|
||||
"timeSecondInputHint",
|
||||
"sortOptionManualLabel",
|
||||
"helpButtonLabel",
|
||||
|
@ -184,6 +186,7 @@
|
|||
"settingsCaptureLogsDescription",
|
||||
"captureLogDetails",
|
||||
"captureLogSuccessNotification",
|
||||
"rootPickerSkipConfirmationDialogContent2",
|
||||
"timeSecondInputHint",
|
||||
"sortOptionAlbumNameLabel",
|
||||
"sortOptionAlbumNameDescendingLabel",
|
||||
|
@ -284,6 +287,7 @@
|
|||
"settingsMemoriesTitle",
|
||||
"settingsMemoriesSubtitle",
|
||||
"settingsMapProviderTitle",
|
||||
"rootPickerSkipConfirmationDialogContent2",
|
||||
"helpButtonLabel",
|
||||
"addUserInputHint",
|
||||
"sharedAlbumInfoDialogTitle",
|
||||
|
@ -302,6 +306,7 @@
|
|||
"settingsMemoriesTitle",
|
||||
"settingsMemoriesSubtitle",
|
||||
"settingsMapProviderTitle",
|
||||
"rootPickerSkipConfirmationDialogContent2",
|
||||
"helpButtonLabel",
|
||||
"addUserInputHint",
|
||||
"sharedAlbumInfoDialogTitle",
|
||||
|
@ -355,6 +360,7 @@
|
|||
"settingsCaptureLogsDescription",
|
||||
"captureLogDetails",
|
||||
"captureLogSuccessNotification",
|
||||
"rootPickerSkipConfirmationDialogContent2",
|
||||
"timeSecondInputHint",
|
||||
"sortOptionAlbumNameLabel",
|
||||
"sortOptionAlbumNameDescendingLabel",
|
||||
|
@ -455,6 +461,7 @@
|
|||
"settingsCaptureLogsDescription",
|
||||
"captureLogDetails",
|
||||
"captureLogSuccessNotification",
|
||||
"rootPickerSkipConfirmationDialogContent2",
|
||||
"timeSecondInputHint",
|
||||
"sortOptionAlbumNameLabel",
|
||||
"sortOptionAlbumNameDescendingLabel",
|
||||
|
|
|
@ -145,7 +145,7 @@ class _RootPickerState extends State<RootPicker> {
|
|||
context: context,
|
||||
builder: (context) => AlertDialog(
|
||||
content:
|
||||
Text(L10n.global().rootPickerSkipConfirmationDialogContent),
|
||||
Text(L10n.global().rootPickerSkipConfirmationDialogContent2),
|
||||
actions: <Widget>[
|
||||
TextButton(
|
||||
onPressed: () {
|
||||
|
|
Loading…
Reference in a new issue