Browse Source

neon: Fix typo

pull/52/head
jld3103 2 years ago
parent
commit
f8036370c9
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
  1. 2
      packages/neon/lib/l10n/en.arb
  2. 2
      packages/neon/lib/l10n/localizations.dart
  3. 2
      packages/neon/lib/l10n/localizations_en.dart

2
packages/neon/lib/l10n/en.arb

@ -79,7 +79,7 @@
"globalOptionsThemeModeDark": "Dark",
"globalOptionsThemeModeAutomatic": "Automatic",
"globalOptionsThemeOLEDAsDark": "OLED theme as dark theme",
"globalOptionsPushNotificationsNotice": "External services are used for delivering push notifications. While the content is encrypted and can only be ready by this app, extracting metadata like the time and count of notifications is still possible.",
"globalOptionsPushNotificationsNotice": "External services are used for delivering push notifications. While the content is encrypted and can only be read by this app, extracting metadata like the time and count of notifications is still possible.",
"globalOptionsPushNotificationsEnabled": "Enabled",
"globalOptionsPushNotificationsEnabledDisabledNotice": "No UnifiedPush distributor could be found. Please go to https://unifiedpush.org/users/distributors and setup any of the listed distributors. Then re-open this app and you should be able to enable notifications",
"globalOptionsPushNotificationsDistributor": "UnifiedPush Distributor",

2
packages/neon/lib/l10n/localizations.dart

@ -398,7 +398,7 @@ abstract class AppLocalizations {
/// No description provided for @globalOptionsPushNotificationsNotice.
///
/// In en, this message translates to:
/// **'External services are used for delivering push notifications. While the content is encrypted and can only be ready by this app, extracting metadata like the time and count of notifications is still possible.'**
/// **'External services are used for delivering push notifications. While the content is encrypted and can only be read by this app, extracting metadata like the time and count of notifications is still possible.'**
String get globalOptionsPushNotificationsNotice;
/// No description provided for @globalOptionsPushNotificationsEnabled.

2
packages/neon/lib/l10n/localizations_en.dart

@ -170,7 +170,7 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get globalOptionsPushNotificationsNotice =>
'External services are used for delivering push notifications. While the content is encrypted and can only be ready by this app, extracting metadata like the time and count of notifications is still possible.';
'External services are used for delivering push notifications. While the content is encrypted and can only be read by this app, extracting metadata like the time and count of notifications is still possible.';
@override
String get globalOptionsPushNotificationsEnabled => 'Enabled';

Loading…
Cancel
Save