From 7ef115526706597a1080a80c8f65bfe08e3c535d Mon Sep 17 00:00:00 2001 From: KhaledNjim Date: Tue, 12 Nov 2024 23:32:23 +0100 Subject: [PATCH] LA-1267 Update permission required dialog string --- lib/l10n/intl_messages.arb | 10 ++++++++-- lib/presentation/localizations/app_localizations.dart | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/lib/l10n/intl_messages.arb b/lib/l10n/intl_messages.arb index ff574cfe..f309c756 100644 --- a/lib/l10n/intl_messages.arb +++ b/lib/l10n/intl_messages.arb @@ -1,5 +1,5 @@ { - "@@last_modified": "2024-11-06T13:25:45.050236", + "@@last_modified": "2024-11-12T23:24:52.405809", "initializing_data": "Initializing data...", "@initializing_data": { "type": "text", @@ -3114,7 +3114,7 @@ "placeholders_order": [], "placeholders": {} }, - "give_access_in_settings": "Please give linshare access in the settings to continue", + "give_access_in_settings": "To continue using all features, please allow LinShare access to the Camera, Microphone, and Phone in your device settings. Camera and Microphone access are needed to capture photos, videos, and audio, while Phone access enables LinShare to automatically pause capture if you receive a call.", "@give_access_in_settings": { "type": "text", "placeholders_order": [], @@ -3150,6 +3150,12 @@ "placeholders_order": [], "placeholders": {} }, + "you_cant_delete_the_last_version": "You can't delete the last version, try to delete the whole document", + "@you_cant_delete_the_last_version": { + "type": "text", + "placeholders_order": [], + "placeholders": {} + }, "exit": "exit", "@exit": { "type": "text", diff --git a/lib/presentation/localizations/app_localizations.dart b/lib/presentation/localizations/app_localizations.dart index 00e7ad33..e1d2d032 100644 --- a/lib/presentation/localizations/app_localizations.dart +++ b/lib/presentation/localizations/app_localizations.dart @@ -3034,7 +3034,7 @@ class AppLocalizations { String get give_access_in_settings { return Intl.message( - 'Please give linshare access in the settings to continue', + 'To continue using all features, please allow LinShare access to the Camera, Microphone, and Phone in your device settings. Camera and Microphone access are needed to capture photos, videos, and audio, while Phone access enables LinShare to automatically pause capture if you receive a call.', name: 'give_access_in_settings'); }