Update the script to format the files

pull/1522/head
Ellet 1 year ago
parent abb3057e55
commit 40d7bdde2a
No known key found for this signature in database
GPG Key ID: C488CC70BBCEF0D1
  1. 190
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations.dart
  2. 3
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_ar.dart
  3. 6
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_bg.dart
  4. 9
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_bn.dart
  5. 9
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_cs.dart
  6. 3
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_da.dart
  7. 3
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_de.dart
  8. 17
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_en.dart
  9. 3
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_es.dart
  10. 12
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_fa.dart
  11. 12
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_fr.dart
  12. 9
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_he.dart
  13. 12
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_hi.dart
  14. 12
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_id.dart
  15. 15
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_it.dart
  16. 3
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_ja.dart
  17. 3
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_ko.dart
  18. 9
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_ms.dart
  19. 9
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_nl.dart
  20. 9
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_no.dart
  21. 3
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_pl.dart
  22. 8
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_pt.dart
  23. 3
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_ru.dart
  24. 12
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_sr.dart
  25. 6
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_sw.dart
  26. 3
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_tk.dart
  27. 3
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_tr.dart
  28. 3
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_uk.dart
  29. 12
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_ur.dart
  30. 9
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_vi.dart
  31. 7
      lib/src/gen/flutter_gen/gen_l10n/flutter_quill_localizations_zh.dart
  32. 4
      scripts/renegerate-translations.sh

@ -88,7 +88,8 @@ import 'flutter_quill_localizations_zh.dart';
/// be consistent with the languages listed in the AppLocalizations.supportedLocales
/// property.
abstract class AppLocalizations {
AppLocalizations(String locale) : localeName = intl.Intl.canonicalizedLocale(locale.toString());
AppLocalizations(String locale)
: localeName = intl.Intl.canonicalizedLocale(locale.toString());
final String localeName;
@ -96,7 +97,8 @@ abstract class AppLocalizations {
return Localizations.of<AppLocalizations>(context, AppLocalizations);
}
static const LocalizationsDelegate<AppLocalizations> delegate = _AppLocalizationsDelegate();
static const LocalizationsDelegate<AppLocalizations> delegate =
_AppLocalizationsDelegate();
/// A list of this localizations delegate along with the default localizations
/// delegates.
@ -108,7 +110,8 @@ abstract class AppLocalizations {
/// Additional delegates can be added by appending to this list in
/// MaterialApp. This list does not have to be used at all if a custom list
/// of delegates is preferred or required.
static const List<LocalizationsDelegate<dynamic>> localizationsDelegates = <LocalizationsDelegate<dynamic>>[
static const List<LocalizationsDelegate<dynamic>> localizationsDelegates =
<LocalizationsDelegate<dynamic>>[
delegate,
GlobalMaterialLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
@ -592,7 +595,8 @@ abstract class AppLocalizations {
String get caseSensitivityAndWholeWordSearch;
}
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {
class _AppLocalizationsDelegate
extends LocalizationsDelegate<AppLocalizations> {
const _AppLocalizationsDelegate();
@override
@ -601,75 +605,141 @@ class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations>
}
@override
bool isSupported(Locale locale) => <String>['ar', 'bg', 'bn', 'cs', 'da', 'de', 'en', 'es', 'fa', 'fr', 'he', 'hi', 'id', 'it', 'ja', 'ko', 'ms', 'nl', 'no', 'pl', 'pt', 'ru', 'sr', 'sw', 'tk', 'tr', 'uk', 'ur', 'vi', 'zh'].contains(locale.languageCode);
bool isSupported(Locale locale) => <String>[
'ar',
'bg',
'bn',
'cs',
'da',
'de',
'en',
'es',
'fa',
'fr',
'he',
'hi',
'id',
'it',
'ja',
'ko',
'ms',
'nl',
'no',
'pl',
'pt',
'ru',
'sr',
'sw',
'tk',
'tr',
'uk',
'ur',
'vi',
'zh'
].contains(locale.languageCode);
@override
bool shouldReload(_AppLocalizationsDelegate old) => false;
}
AppLocalizations lookupAppLocalizations(Locale locale) {
// Lookup logic when language+country codes are specified.
switch (locale.languageCode) {
case 'en': {
switch (locale.countryCode) {
case 'US': return AppLocalizationsEnUs();
}
break;
}
case 'pt': {
switch (locale.countryCode) {
case 'BR': return AppLocalizationsPtBr();
}
break;
}
case 'zh': {
switch (locale.countryCode) {
case 'CN': return AppLocalizationsZhCn();
case 'HK': return AppLocalizationsZhHk();
}
break;
}
case 'en':
{
switch (locale.countryCode) {
case 'US':
return AppLocalizationsEnUs();
}
break;
}
case 'pt':
{
switch (locale.countryCode) {
case 'BR':
return AppLocalizationsPtBr();
}
break;
}
case 'zh':
{
switch (locale.countryCode) {
case 'CN':
return AppLocalizationsZhCn();
case 'HK':
return AppLocalizationsZhHk();
}
break;
}
}
// Lookup logic when only language code is specified.
switch (locale.languageCode) {
case 'ar': return AppLocalizationsAr();
case 'bg': return AppLocalizationsBg();
case 'bn': return AppLocalizationsBn();
case 'cs': return AppLocalizationsCs();
case 'da': return AppLocalizationsDa();
case 'de': return AppLocalizationsDe();
case 'en': return AppLocalizationsEn();
case 'es': return AppLocalizationsEs();
case 'fa': return AppLocalizationsFa();
case 'fr': return AppLocalizationsFr();
case 'he': return AppLocalizationsHe();
case 'hi': return AppLocalizationsHi();
case 'id': return AppLocalizationsId();
case 'it': return AppLocalizationsIt();
case 'ja': return AppLocalizationsJa();
case 'ko': return AppLocalizationsKo();
case 'ms': return AppLocalizationsMs();
case 'nl': return AppLocalizationsNl();
case 'no': return AppLocalizationsNo();
case 'pl': return AppLocalizationsPl();
case 'pt': return AppLocalizationsPt();
case 'ru': return AppLocalizationsRu();
case 'sr': return AppLocalizationsSr();
case 'sw': return AppLocalizationsSw();
case 'tk': return AppLocalizationsTk();
case 'tr': return AppLocalizationsTr();
case 'uk': return AppLocalizationsUk();
case 'ur': return AppLocalizationsUr();
case 'vi': return AppLocalizationsVi();
case 'zh': return AppLocalizationsZh();
case 'ar':
return AppLocalizationsAr();
case 'bg':
return AppLocalizationsBg();
case 'bn':
return AppLocalizationsBn();
case 'cs':
return AppLocalizationsCs();
case 'da':
return AppLocalizationsDa();
case 'de':
return AppLocalizationsDe();
case 'en':
return AppLocalizationsEn();
case 'es':
return AppLocalizationsEs();
case 'fa':
return AppLocalizationsFa();
case 'fr':
return AppLocalizationsFr();
case 'he':
return AppLocalizationsHe();
case 'hi':
return AppLocalizationsHi();
case 'id':
return AppLocalizationsId();
case 'it':
return AppLocalizationsIt();
case 'ja':
return AppLocalizationsJa();
case 'ko':
return AppLocalizationsKo();
case 'ms':
return AppLocalizationsMs();
case 'nl':
return AppLocalizationsNl();
case 'no':
return AppLocalizationsNo();
case 'pl':
return AppLocalizationsPl();
case 'pt':
return AppLocalizationsPt();
case 'ru':
return AppLocalizationsRu();
case 'sr':
return AppLocalizationsSr();
case 'sw':
return AppLocalizationsSw();
case 'tk':
return AppLocalizationsTk();
case 'tr':
return AppLocalizationsTr();
case 'uk':
return AppLocalizationsUk();
case 'ur':
return AppLocalizationsUr();
case 'vi':
return AppLocalizationsVi();
case 'zh':
return AppLocalizationsZh();
}
throw FlutterError(
'AppLocalizations.delegate failed to load unsupported locale "$locale". This is likely '
'an issue with the localizations generation tool. Please file an issue '
'on GitHub with a reproducible sample app and the gen-l10n configuration '
'that was used.'
);
'AppLocalizations.delegate failed to load unsupported locale "$locale". This is likely '
'an issue with the localizations generation tool. Please file an issue '
'on GitHub with a reproducible sample app and the gen-l10n configuration '
'that was used.');
}

@ -221,5 +221,6 @@ class AppLocalizationsAr extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -209,7 +209,8 @@ class AppLocalizationsBg extends AppLocalizations {
String get pleaseEnterTheLinkURL => "Например, 'https://example.com'";
@override
String get pleaseEnterAValidImageURL => 'Моля, въведете валиден URL на изображението';
String get pleaseEnterAValidImageURL =>
'Моля, въведете валиден URL на изображението';
@override
String get pleaseEnterAValidVideoURL => 'Please enter a valid video url';
@ -221,5 +222,6 @@ class AppLocalizationsBg extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -203,10 +203,12 @@ class AppLocalizationsBn extends AppLocalizations {
String get errorWhileSavingImage => 'ির সরকষণ সমযি';
@override
String get pleaseEnterTextForYourLink => "Please enter a text for your link (e.g., 'Learn more')";
String get pleaseEnterTextForYourLink =>
"Please enter a text for your link (e.g., 'Learn more')";
@override
String get pleaseEnterTheLinkURL => "Please enter the link URL (e.g., 'https://example.com')";
String get pleaseEnterTheLinkURL =>
"Please enter the link URL (e.g., 'https://example.com')";
@override
String get pleaseEnterAValidImageURL => 'Please enter a valid image URL';
@ -221,5 +223,6 @@ class AppLocalizationsBn extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -203,10 +203,12 @@ class AppLocalizationsCs extends AppLocalizations {
String get errorWhileSavingImage => 'Chyba při ukládání obrázku';
@override
String get pleaseEnterTextForYourLink => "Please enter a text for your link (e.g., 'Learn more')";
String get pleaseEnterTextForYourLink =>
"Please enter a text for your link (e.g., 'Learn more')";
@override
String get pleaseEnterTheLinkURL => "Please enter the link URL (e.g., 'https://example.com')";
String get pleaseEnterTheLinkURL =>
"Please enter the link URL (e.g., 'https://example.com')";
@override
String get pleaseEnterAValidImageURL => 'Please enter a valid image URL';
@ -221,5 +223,6 @@ class AppLocalizationsCs extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -221,5 +221,6 @@ class AppLocalizationsDa extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -221,5 +221,6 @@ class AppLocalizationsDe extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -203,10 +203,12 @@ class AppLocalizationsEn extends AppLocalizations {
String get errorWhileSavingImage => 'Error while saving image';
@override
String get pleaseEnterTextForYourLink => "Please enter a text for your link (e.g., 'Learn more')";
String get pleaseEnterTextForYourLink =>
"Please enter a text for your link (e.g., 'Learn more')";
@override
String get pleaseEnterTheLinkURL => "Please enter the link URL (e.g., 'https://example.com')";
String get pleaseEnterTheLinkURL =>
"Please enter the link URL (e.g., 'https://example.com')";
@override
String get pleaseEnterAValidImageURL => 'Please enter a valid image URL';
@ -221,12 +223,13 @@ class AppLocalizationsEn extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}
/// The translations for English, as used in the United States (`en_US`).
class AppLocalizationsEnUs extends AppLocalizationsEn {
AppLocalizationsEnUs(): super('en_US');
AppLocalizationsEnUs() : super('en_US');
@override
String get pasteLink => 'Paste a link';
@ -427,10 +430,12 @@ class AppLocalizationsEnUs extends AppLocalizationsEn {
String get errorWhileSavingImage => 'Error while saving image';
@override
String get pleaseEnterTextForYourLink => "Please enter a text for your link (e.g., 'Learn more')";
String get pleaseEnterTextForYourLink =>
"Please enter a text for your link (e.g., 'Learn more')";
@override
String get pleaseEnterTheLinkURL => "Please enter the link URL (e.g., 'https://example.com')";
String get pleaseEnterTheLinkURL =>
"Please enter the link URL (e.g., 'https://example.com')";
@override
String get pleaseEnterAValidImageURL => 'Please enter a valid image URL';

@ -221,5 +221,6 @@ class AppLocalizationsEs extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -197,16 +197,19 @@ class AppLocalizationsFa extends AppLocalizations {
String get savedUsingTheNetwork => 'Saved using the network';
@override
String get savedUsingLocalStorage => 'ذخیره شده با استفاده از فضای ذخیره محلی';
String get savedUsingLocalStorage =>
'ذخیره شده با استفاده از فضای ذخیره محلی';
@override
String get errorWhileSavingImage => 'خطا در هنگام ذخیره تصویر';
@override
String get pleaseEnterTextForYourLink => "Please enter a text for your link (e.g., 'Learn more')";
String get pleaseEnterTextForYourLink =>
"Please enter a text for your link (e.g., 'Learn more')";
@override
String get pleaseEnterTheLinkURL => "Please enter the link URL (e.g., 'https://example.com')";
String get pleaseEnterTheLinkURL =>
"Please enter the link URL (e.g., 'https://example.com')";
@override
String get pleaseEnterAValidImageURL => 'Please enter a valid image URL';
@ -221,5 +224,6 @@ class AppLocalizationsFa extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -197,10 +197,12 @@ class AppLocalizationsFr extends AppLocalizations {
String get savedUsingTheNetwork => 'Enregistré via le réseau';
@override
String get savedUsingLocalStorage => 'Enregistré en utilisant le stockage local';
String get savedUsingLocalStorage =>
'Enregistré en utilisant le stockage local';
@override
String get errorWhileSavingImage => "Erreur lors de l'enregistrement de l'image";
String get errorWhileSavingImage =>
"Erreur lors de l'enregistrement de l'image";
@override
String get pleaseEnterTextForYourLink => "par exemple, 'En savoir plus'";
@ -209,7 +211,8 @@ class AppLocalizationsFr extends AppLocalizations {
String get pleaseEnterTheLinkURL => "par exemple, 'https://example.com'";
@override
String get pleaseEnterAValidImageURL => "Veuillez saisir une URL d'image valide";
String get pleaseEnterAValidImageURL =>
"Veuillez saisir une URL d'image valide";
@override
String get pleaseEnterAValidVideoURL => 'Please enter a valid video url';
@ -221,5 +224,6 @@ class AppLocalizationsFr extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -203,10 +203,12 @@ class AppLocalizationsHe extends AppLocalizations {
String get errorWhileSavingImage => 'שגיאה בעת שמירת התמונה';
@override
String get pleaseEnterTextForYourLink => "Please enter a text for your link (e.g., 'Learn more')";
String get pleaseEnterTextForYourLink =>
"Please enter a text for your link (e.g., 'Learn more')";
@override
String get pleaseEnterTheLinkURL => "Please enter the link URL (e.g., 'https://example.com')";
String get pleaseEnterTheLinkURL =>
"Please enter the link URL (e.g., 'https://example.com')";
@override
String get pleaseEnterAValidImageURL => 'Please enter a valid image URL';
@ -221,5 +223,6 @@ class AppLocalizationsHe extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -197,16 +197,19 @@ class AppLocalizationsHi extends AppLocalizations {
String get savedUsingTheNetwork => 'Saved using the network';
@override
String get savedUsingLocalStorage => 'य सरहण क उपयग करक सह गय';
String get savedUsingLocalStorage =>
'य सरहण क उपयग करक सह गय';
@override
String get errorWhileSavingImage => 'तसर सहजत समय ति';
@override
String get pleaseEnterTextForYourLink => "Please enter a text for your link (e.g., 'Learn more')";
String get pleaseEnterTextForYourLink =>
"Please enter a text for your link (e.g., 'Learn more')";
@override
String get pleaseEnterTheLinkURL => "Please enter the link URL (e.g., 'https://example.com')";
String get pleaseEnterTheLinkURL =>
"Please enter the link URL (e.g., 'https://example.com')";
@override
String get pleaseEnterAValidImageURL => 'Please enter a valid image URL';
@ -221,5 +224,6 @@ class AppLocalizationsHi extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -197,16 +197,19 @@ class AppLocalizationsId extends AppLocalizations {
String get savedUsingTheNetwork => 'Saved using the network';
@override
String get savedUsingLocalStorage => 'Tersimpan menggunakan penyimpanan lokal';
String get savedUsingLocalStorage =>
'Tersimpan menggunakan penyimpanan lokal';
@override
String get errorWhileSavingImage => 'Error saat menyimpan gambar';
@override
String get pleaseEnterTextForYourLink => "Please enter a text for your link (e.g., 'Learn more')";
String get pleaseEnterTextForYourLink =>
"Please enter a text for your link (e.g., 'Learn more')";
@override
String get pleaseEnterTheLinkURL => "Please enter the link URL (e.g., 'https://example.com')";
String get pleaseEnterTheLinkURL =>
"Please enter the link URL (e.g., 'https://example.com')";
@override
String get pleaseEnterAValidImageURL => 'Please enter a valid image URL';
@ -221,5 +224,6 @@ class AppLocalizationsId extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -197,16 +197,20 @@ class AppLocalizationsIt extends AppLocalizations {
String get savedUsingTheNetwork => 'Saved using the network';
@override
String get savedUsingLocalStorage => 'Salvato utilizzando la memorizzazione locale';
String get savedUsingLocalStorage =>
'Salvato utilizzando la memorizzazione locale';
@override
String get errorWhileSavingImage => "Errore durante il salvataggio dell'immagine";
String get errorWhileSavingImage =>
"Errore durante il salvataggio dell'immagine";
@override
String get pleaseEnterTextForYourLink => "Please enter a text for your link (e.g., 'Learn more')";
String get pleaseEnterTextForYourLink =>
"Please enter a text for your link (e.g., 'Learn more')";
@override
String get pleaseEnterTheLinkURL => "Please enter the link URL (e.g., 'https://example.com')";
String get pleaseEnterTheLinkURL =>
"Please enter the link URL (e.g., 'https://example.com')";
@override
String get pleaseEnterAValidImageURL => 'Please enter a valid image URL';
@ -221,5 +225,6 @@ class AppLocalizationsIt extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -221,5 +221,6 @@ class AppLocalizationsJa extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -221,5 +221,6 @@ class AppLocalizationsKo extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -203,10 +203,12 @@ class AppLocalizationsMs extends AppLocalizations {
String get errorWhileSavingImage => 'Error while saving image';
@override
String get pleaseEnterTextForYourLink => "Please enter a text for your link (e.g., 'Learn more')";
String get pleaseEnterTextForYourLink =>
"Please enter a text for your link (e.g., 'Learn more')";
@override
String get pleaseEnterTheLinkURL => "Please enter the link URL (e.g., 'https://example.com')";
String get pleaseEnterTheLinkURL =>
"Please enter the link URL (e.g., 'https://example.com')";
@override
String get pleaseEnterAValidImageURL => 'Please enter a valid image URL';
@ -221,5 +223,6 @@ class AppLocalizationsMs extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -203,10 +203,12 @@ class AppLocalizationsNl extends AppLocalizations {
String get errorWhileSavingImage => 'Error while saving image';
@override
String get pleaseEnterTextForYourLink => "Please enter a text for your link (e.g., 'Learn more')";
String get pleaseEnterTextForYourLink =>
"Please enter a text for your link (e.g., 'Learn more')";
@override
String get pleaseEnterTheLinkURL => "Please enter the link URL (e.g., 'https://example.com')";
String get pleaseEnterTheLinkURL =>
"Please enter the link URL (e.g., 'https://example.com')";
@override
String get pleaseEnterAValidImageURL => 'Please enter a valid image URL';
@ -221,5 +223,6 @@ class AppLocalizationsNl extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -203,10 +203,12 @@ class AppLocalizationsNo extends AppLocalizations {
String get errorWhileSavingImage => 'Feil ved lagring av bilde';
@override
String get pleaseEnterTextForYourLink => "Please enter a text for your link (e.g., 'Learn more')";
String get pleaseEnterTextForYourLink =>
"Please enter a text for your link (e.g., 'Learn more')";
@override
String get pleaseEnterTheLinkURL => "Please enter the link URL (e.g., 'https://example.com')";
String get pleaseEnterTheLinkURL =>
"Please enter the link URL (e.g., 'https://example.com')";
@override
String get pleaseEnterAValidImageURL => 'Please enter a valid image URL';
@ -221,5 +223,6 @@ class AppLocalizationsNo extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -221,5 +221,6 @@ class AppLocalizationsPl extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -197,7 +197,8 @@ class AppLocalizationsPt extends AppLocalizations {
String get savedUsingTheNetwork => 'Guardado através da network';
@override
String get savedUsingLocalStorage => 'Guardado através do armazenamento local';
String get savedUsingLocalStorage =>
'Guardado através do armazenamento local';
@override
String get errorWhileSavingImage => 'Erro a gravar imagem';
@ -221,12 +222,13 @@ class AppLocalizationsPt extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}
/// The translations for Portuguese, as used in Brazil (`pt_BR`).
class AppLocalizationsPtBr extends AppLocalizationsPt {
AppLocalizationsPtBr(): super('pt_BR');
AppLocalizationsPtBr() : super('pt_BR');
@override
String get pasteLink => 'Colar um link';

@ -221,5 +221,6 @@ class AppLocalizationsRu extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -197,16 +197,19 @@ class AppLocalizationsSr extends AppLocalizations {
String get savedUsingTheNetwork => 'Saved using the network';
@override
String get savedUsingLocalStorage => 'Sačuvano korišćenjem lokalnog skladišta';
String get savedUsingLocalStorage =>
'Sačuvano korišćenjem lokalnog skladišta';
@override
String get errorWhileSavingImage => 'Greška pri čuvanju slike';
@override
String get pleaseEnterTextForYourLink => "Please enter a text for your link (e.g., 'Learn more')";
String get pleaseEnterTextForYourLink =>
"Please enter a text for your link (e.g., 'Learn more')";
@override
String get pleaseEnterTheLinkURL => "Please enter the link URL (e.g., 'https://example.com')";
String get pleaseEnterTheLinkURL =>
"Please enter the link URL (e.g., 'https://example.com')";
@override
String get pleaseEnterAValidImageURL => 'Please enter a valid image URL';
@ -221,5 +224,6 @@ class AppLocalizationsSr extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -209,7 +209,8 @@ class AppLocalizationsSw extends AppLocalizations {
String get pleaseEnterTheLinkURL => "Kwa mfano, 'https://example.com'";
@override
String get pleaseEnterAValidImageURL => 'Tafadhali ingiza URL halali ya picha';
String get pleaseEnterAValidImageURL =>
'Tafadhali ingiza URL halali ya picha';
@override
String get pleaseEnterAValidVideoURL => 'Please enter a valid video url';
@ -221,5 +222,6 @@ class AppLocalizationsSw extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -221,5 +221,6 @@ class AppLocalizationsTk extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -221,5 +221,6 @@ class AppLocalizationsTr extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -221,5 +221,6 @@ class AppLocalizationsUk extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -197,16 +197,19 @@ class AppLocalizationsUr extends AppLocalizations {
String get savedUsingTheNetwork => 'Saved using the network';
@override
String get savedUsingLocalStorage => 'مقامی ذخیرہ کار استعمال کر کے محفوظ ہوا';
String get savedUsingLocalStorage =>
'مقامی ذخیرہ کار استعمال کر کے محفوظ ہوا';
@override
String get errorWhileSavingImage => 'تصویر کو محفوظ کرتے وقت خطا';
@override
String get pleaseEnterTextForYourLink => "Please enter a text for your link (e.g., 'Learn more')";
String get pleaseEnterTextForYourLink =>
"Please enter a text for your link (e.g., 'Learn more')";
@override
String get pleaseEnterTheLinkURL => "Please enter the link URL (e.g., 'https://example.com')";
String get pleaseEnterTheLinkURL =>
"Please enter the link URL (e.g., 'https://example.com')";
@override
String get pleaseEnterAValidImageURL => 'Please enter a valid image URL';
@ -221,5 +224,6 @@ class AppLocalizationsUr extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -203,10 +203,12 @@ class AppLocalizationsVi extends AppLocalizations {
String get errorWhileSavingImage => 'Lỗi khi lưu hình ảnh';
@override
String get pleaseEnterTextForYourLink => "Please enter a text for your link (e.g., 'Learn more')";
String get pleaseEnterTextForYourLink =>
"Please enter a text for your link (e.g., 'Learn more')";
@override
String get pleaseEnterTheLinkURL => "Please enter the link URL (e.g., 'https://example.com')";
String get pleaseEnterTheLinkURL =>
"Please enter the link URL (e.g., 'https://example.com')";
@override
String get pleaseEnterAValidImageURL => 'Please enter a valid image URL';
@ -221,5 +223,6 @@ class AppLocalizationsVi extends AppLocalizations {
String get image => 'Image';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}

@ -221,12 +221,13 @@ class AppLocalizationsZh extends AppLocalizations {
String get image => '图像';
@override
String get caseSensitivityAndWholeWordSearch => 'Case sensitivity and whole word search';
String get caseSensitivityAndWholeWordSearch =>
'Case sensitivity and whole word search';
}
/// The translations for Chinese, as used in China (`zh_CN`).
class AppLocalizationsZhCn extends AppLocalizationsZh {
AppLocalizationsZhCn(): super('zh_CN');
AppLocalizationsZhCn() : super('zh_CN');
@override
String get pasteLink => '粘贴链接';
@ -429,7 +430,7 @@ class AppLocalizationsZhCn extends AppLocalizationsZh {
/// The translations for Chinese, as used in Hong Kong (`zh_HK`).
class AppLocalizationsZhHk extends AppLocalizationsZh {
AppLocalizationsZhHk(): super('zh_HK');
AppLocalizationsZhHk() : super('zh_HK');
@override
String get pasteLink => '貼上連結';

@ -24,3 +24,7 @@ rm lib/src/gen/flutter_gen/pubspec.yaml
echo ""
echo "Apply dart fixes to the newly generated files"
dart fix --apply
echo ""
echo "Formate the newly generated dart files"
dart format .
Loading…
Cancel
Save