mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
Add Irish(ga) to Flutter (#167129)
This PR is to add Irish(ga) to Flutter and update localizations. Fixes https://github.com/flutter/flutter/issues/68291 ## Pre-launch Checklist - [x] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [x] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [x] I read and followed the [Flutter Style Guide], including [Features we expect every widget to implement]. - [x] I signed the [CLA]. - [x] I listed at least one issue that this PR fixes in the description above. - [x] I updated/added relevant documentation (doc comments with `///`). - [x] I added new tests to check the change I am making, or this PR is [test-exempt]. - [x] I followed the [breaking change policy] and added [Data Driven Fixes] where supported. - [x] All existing and new tests are passing.
This commit is contained in:
parent
7515a99e65
commit
e051a8f838
48
packages/flutter_localizations/lib/src/l10n/cupertino_ga.arb
Normal file
48
packages/flutter_localizations/lib/src/l10n/cupertino_ga.arb
Normal file
@ -0,0 +1,48 @@
|
||||
{
|
||||
"timerPickerSecondLabelFew": "soic.",
|
||||
"datePickerHourSemanticsLabelTwo": "$hour a chlog",
|
||||
"datePickerHourSemanticsLabelFew": "$hour a chlog",
|
||||
"datePickerHourSemanticsLabelMany": "$hour a chlog",
|
||||
"datePickerMinuteSemanticsLabelTwo": "$minute nóiméad",
|
||||
"datePickerMinuteSemanticsLabelFew": "$minute nóiméad",
|
||||
"datePickerMinuteSemanticsLabelMany": "$minute nóiméad",
|
||||
"timerPickerHourLabelTwo": "uair an chloig",
|
||||
"timerPickerHourLabelFew": "uair an chloig",
|
||||
"timerPickerHourLabelMany": "n-uair an chloig",
|
||||
"timerPickerMinuteLabelTwo": "nóim.",
|
||||
"timerPickerMinuteLabelFew": "nóim.",
|
||||
"timerPickerMinuteLabelMany": "nóim.",
|
||||
"timerPickerSecondLabelMany": "soic.",
|
||||
"timerPickerSecondLabelTwo": "soic.",
|
||||
"datePickerHourSemanticsLabelOne": "$hour a chlog",
|
||||
"datePickerHourSemanticsLabelOther": "$hour a chlog",
|
||||
"datePickerMinuteSemanticsLabelOne": "Aon nóiméad amháin",
|
||||
"datePickerMinuteSemanticsLabelOther": "$minute nóiméad",
|
||||
"datePickerDateOrder": "dmy",
|
||||
"datePickerDateTimeOrder": "date_time_dayPeriod",
|
||||
"anteMeridiemAbbreviation": "R.N.",
|
||||
"postMeridiemAbbreviation": "I.N.",
|
||||
"todayLabel": "Inniu",
|
||||
"alertDialogLabel": "Foláireamh",
|
||||
"tabSemanticsLabel": "Cluaisín $tabIndex de $tabCount",
|
||||
"timerPickerHourLabelOne": "uair an chloig",
|
||||
"timerPickerHourLabelOther": "uair an chloig",
|
||||
"timerPickerMinuteLabelOne": "nóim.",
|
||||
"timerPickerMinuteLabelOther": "nóim.",
|
||||
"timerPickerSecondLabelOne": "soic.",
|
||||
"timerPickerSecondLabelOther": "soic.",
|
||||
"cutButtonLabel": "Gearr",
|
||||
"copyButtonLabel": "Cóipeáil",
|
||||
"pasteButtonLabel": "Greamaigh",
|
||||
"clearButtonLabel": "Glan",
|
||||
"selectAllButtonLabel": "Roghnaigh Gach Rud",
|
||||
"lookUpButtonLabel": "Cuardaigh",
|
||||
"searchWebButtonLabel": "Cuardaigh an Gréasán",
|
||||
"shareButtonLabel": "Comhroinn...",
|
||||
"noSpellCheckReplacementsLabel": "Níor Aimsíodh Aon Fhocal Oiriúnach le Cur ina Áit",
|
||||
"searchTextFieldPlaceholderLabel": "Cuardaigh",
|
||||
"modalBarrierDismissLabel": "Ruaig",
|
||||
"menuDismissLabel": "Ruaig an roghchlár",
|
||||
"cancelButtonLabel": "Cealaigh",
|
||||
"backButtonLabel": "Siar"
|
||||
}
|
@ -29,5 +29,5 @@
|
||||
"shareButtonLabel": "မျှဝေရန်...",
|
||||
"clearButtonLabel": "ဖယ်ရှားရန်",
|
||||
"cancelButtonLabel": "မလုပ်တော့",
|
||||
"backButtonLabel": "Back"
|
||||
"backButtonLabel": "နောက်သို့"
|
||||
}
|
||||
|
@ -5387,6 +5387,178 @@ class CupertinoLocalizationFrCa extends CupertinoLocalizationFr {
|
||||
String get timerPickerMinuteLabelOther => 'min';
|
||||
}
|
||||
|
||||
/// The translations for Irish (`ga`).
|
||||
class CupertinoLocalizationGa extends GlobalCupertinoLocalizations {
|
||||
/// Create an instance of the translation bundle for Irish.
|
||||
///
|
||||
/// For details on the meaning of the arguments, see [GlobalCupertinoLocalizations].
|
||||
const CupertinoLocalizationGa({
|
||||
super.localeName = 'ga',
|
||||
required super.fullYearFormat,
|
||||
required super.dayFormat,
|
||||
required super.weekdayFormat,
|
||||
required super.mediumDateFormat,
|
||||
required super.singleDigitHourFormat,
|
||||
required super.singleDigitMinuteFormat,
|
||||
required super.doubleDigitMinuteFormat,
|
||||
required super.singleDigitSecondFormat,
|
||||
required super.decimalFormat,
|
||||
});
|
||||
|
||||
@override
|
||||
String get alertDialogLabel => 'Foláireamh';
|
||||
|
||||
@override
|
||||
String get anteMeridiemAbbreviation => 'R.N.';
|
||||
|
||||
@override
|
||||
String get backButtonLabel => 'Siar';
|
||||
|
||||
@override
|
||||
String get cancelButtonLabel => 'Cealaigh';
|
||||
|
||||
@override
|
||||
String get clearButtonLabel => 'Glan';
|
||||
|
||||
@override
|
||||
String get copyButtonLabel => 'Cóipeáil';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Gearr';
|
||||
|
||||
@override
|
||||
String get datePickerDateOrderString => 'dmy';
|
||||
|
||||
@override
|
||||
String get datePickerDateTimeOrderString => 'date_time_dayPeriod';
|
||||
|
||||
@override
|
||||
String? get datePickerHourSemanticsLabelFew => r'$hour a chlog';
|
||||
|
||||
@override
|
||||
String? get datePickerHourSemanticsLabelMany => r'$hour a chlog';
|
||||
|
||||
@override
|
||||
String? get datePickerHourSemanticsLabelOne => r'$hour a chlog';
|
||||
|
||||
@override
|
||||
String get datePickerHourSemanticsLabelOther => r'$hour a chlog';
|
||||
|
||||
@override
|
||||
String? get datePickerHourSemanticsLabelTwo => r'$hour a chlog';
|
||||
|
||||
@override
|
||||
String? get datePickerHourSemanticsLabelZero => null;
|
||||
|
||||
@override
|
||||
String? get datePickerMinuteSemanticsLabelFew => r'$minute nóiméad';
|
||||
|
||||
@override
|
||||
String? get datePickerMinuteSemanticsLabelMany => r'$minute nóiméad';
|
||||
|
||||
@override
|
||||
String? get datePickerMinuteSemanticsLabelOne => 'Aon nóiméad amháin';
|
||||
|
||||
@override
|
||||
String get datePickerMinuteSemanticsLabelOther => r'$minute nóiméad';
|
||||
|
||||
@override
|
||||
String? get datePickerMinuteSemanticsLabelTwo => r'$minute nóiméad';
|
||||
|
||||
@override
|
||||
String? get datePickerMinuteSemanticsLabelZero => null;
|
||||
|
||||
@override
|
||||
String get lookUpButtonLabel => 'Cuardaigh';
|
||||
|
||||
@override
|
||||
String get menuDismissLabel => 'Ruaig an roghchlár';
|
||||
|
||||
@override
|
||||
String get modalBarrierDismissLabel => 'Ruaig';
|
||||
|
||||
@override
|
||||
String get noSpellCheckReplacementsLabel => 'Níor Aimsíodh Aon Fhocal Oiriúnach le Cur ina Áit';
|
||||
|
||||
@override
|
||||
String get pasteButtonLabel => 'Greamaigh';
|
||||
|
||||
@override
|
||||
String get postMeridiemAbbreviation => 'I.N.';
|
||||
|
||||
@override
|
||||
String get searchTextFieldPlaceholderLabel => 'Cuardaigh';
|
||||
|
||||
@override
|
||||
String get searchWebButtonLabel => 'Cuardaigh an Gréasán';
|
||||
|
||||
@override
|
||||
String get selectAllButtonLabel => 'Roghnaigh Gach Rud';
|
||||
|
||||
@override
|
||||
String get shareButtonLabel => 'Comhroinn...';
|
||||
|
||||
@override
|
||||
String get tabSemanticsLabelRaw => r'Cluaisín $tabIndex de $tabCount';
|
||||
|
||||
@override
|
||||
String? get timerPickerHourLabelFew => 'uair an chloig';
|
||||
|
||||
@override
|
||||
String? get timerPickerHourLabelMany => 'n-uair an chloig';
|
||||
|
||||
@override
|
||||
String? get timerPickerHourLabelOne => 'uair an chloig';
|
||||
|
||||
@override
|
||||
String get timerPickerHourLabelOther => 'uair an chloig';
|
||||
|
||||
@override
|
||||
String? get timerPickerHourLabelTwo => 'uair an chloig';
|
||||
|
||||
@override
|
||||
String? get timerPickerHourLabelZero => null;
|
||||
|
||||
@override
|
||||
String? get timerPickerMinuteLabelFew => 'nóim.';
|
||||
|
||||
@override
|
||||
String? get timerPickerMinuteLabelMany => 'nóim.';
|
||||
|
||||
@override
|
||||
String? get timerPickerMinuteLabelOne => 'nóim.';
|
||||
|
||||
@override
|
||||
String get timerPickerMinuteLabelOther => 'nóim.';
|
||||
|
||||
@override
|
||||
String? get timerPickerMinuteLabelTwo => 'nóim.';
|
||||
|
||||
@override
|
||||
String? get timerPickerMinuteLabelZero => null;
|
||||
|
||||
@override
|
||||
String? get timerPickerSecondLabelFew => 'soic.';
|
||||
|
||||
@override
|
||||
String? get timerPickerSecondLabelMany => 'soic.';
|
||||
|
||||
@override
|
||||
String? get timerPickerSecondLabelOne => 'soic.';
|
||||
|
||||
@override
|
||||
String get timerPickerSecondLabelOther => 'soic.';
|
||||
|
||||
@override
|
||||
String? get timerPickerSecondLabelTwo => 'soic.';
|
||||
|
||||
@override
|
||||
String? get timerPickerSecondLabelZero => null;
|
||||
|
||||
@override
|
||||
String get todayLabel => 'Inniu';
|
||||
}
|
||||
|
||||
/// The translations for Galician (`gl`).
|
||||
class CupertinoLocalizationGl extends GlobalCupertinoLocalizations {
|
||||
/// Create an instance of the translation bundle for Galician.
|
||||
@ -9884,7 +10056,7 @@ class CupertinoLocalizationMy extends GlobalCupertinoLocalizations {
|
||||
String get anteMeridiemAbbreviation => 'AM';
|
||||
|
||||
@override
|
||||
String get backButtonLabel => 'Back';
|
||||
String get backButtonLabel => 'နောက်သို့';
|
||||
|
||||
@override
|
||||
String get cancelButtonLabel => 'မလုပ်တော့';
|
||||
@ -15419,6 +15591,7 @@ final Set<String> kCupertinoSupportedLanguages = HashSet<String>.from(const <Str
|
||||
'fi', // Finnish
|
||||
'fil', // Filipino Pilipino
|
||||
'fr', // French
|
||||
'ga', // Irish
|
||||
'gl', // Galician
|
||||
'gsw', // Swiss German Alemannic Alsatian
|
||||
'gu', // Gujarati
|
||||
@ -15511,6 +15684,7 @@ final Set<String> kCupertinoSupportedLanguages = HashSet<String>.from(const <Str
|
||||
/// * `fi` - Finnish
|
||||
/// * `fil` - Filipino Pilipino
|
||||
/// * `fr` - French (plus one country variation)
|
||||
/// * `ga` - Irish
|
||||
/// * `gl` - Galician
|
||||
/// * `gsw` - Swiss German Alemannic Alsatian
|
||||
/// * `gu` - Gujarati
|
||||
@ -15704,6 +15878,8 @@ GlobalCupertinoLocalizations? getCupertinoTranslation(
|
||||
}
|
||||
return CupertinoLocalizationFr(fullYearFormat: fullYearFormat, dayFormat: dayFormat, weekdayFormat: weekdayFormat, mediumDateFormat: mediumDateFormat, singleDigitHourFormat: singleDigitHourFormat, singleDigitMinuteFormat: singleDigitMinuteFormat, doubleDigitMinuteFormat: doubleDigitMinuteFormat, singleDigitSecondFormat: singleDigitSecondFormat, decimalFormat: decimalFormat);
|
||||
}
|
||||
case 'ga':
|
||||
return CupertinoLocalizationGa(fullYearFormat: fullYearFormat, dayFormat: dayFormat, weekdayFormat: weekdayFormat, mediumDateFormat: mediumDateFormat, singleDigitHourFormat: singleDigitHourFormat, singleDigitMinuteFormat: singleDigitMinuteFormat, doubleDigitMinuteFormat: doubleDigitMinuteFormat, singleDigitSecondFormat: singleDigitSecondFormat, decimalFormat: decimalFormat);
|
||||
case 'gl':
|
||||
return CupertinoLocalizationGl(fullYearFormat: fullYearFormat, dayFormat: dayFormat, weekdayFormat: weekdayFormat, mediumDateFormat: mediumDateFormat, singleDigitHourFormat: singleDigitHourFormat, singleDigitMinuteFormat: singleDigitMinuteFormat, doubleDigitMinuteFormat: doubleDigitMinuteFormat, singleDigitSecondFormat: singleDigitSecondFormat, decimalFormat: decimalFormat);
|
||||
case 'gsw':
|
||||
|
@ -16661,6 +16661,502 @@ class MaterialLocalizationFrCa extends MaterialLocalizationFr {
|
||||
TimeOfDayFormat get timeOfDayFormatRaw => TimeOfDayFormat.frenchCanadian;
|
||||
}
|
||||
|
||||
/// The translations for Irish (`ga`).
|
||||
class MaterialLocalizationGa extends GlobalMaterialLocalizations {
|
||||
/// Create an instance of the translation bundle for Irish.
|
||||
///
|
||||
/// For details on the meaning of the arguments, see [GlobalMaterialLocalizations].
|
||||
const MaterialLocalizationGa({
|
||||
super.localeName = 'ga',
|
||||
required super.fullYearFormat,
|
||||
required super.compactDateFormat,
|
||||
required super.shortDateFormat,
|
||||
required super.mediumDateFormat,
|
||||
required super.longDateFormat,
|
||||
required super.yearMonthFormat,
|
||||
required super.shortMonthDayFormat,
|
||||
required super.decimalFormat,
|
||||
required super.twoDigitZeroPaddedFormat,
|
||||
});
|
||||
|
||||
@override
|
||||
String get aboutListTileTitleRaw => r'Maidir le $applicationName';
|
||||
|
||||
@override
|
||||
String get alertDialogLabel => 'Foláireamh';
|
||||
|
||||
@override
|
||||
String get anteMeridiemAbbreviation => 'R.N.';
|
||||
|
||||
@override
|
||||
String get backButtonTooltip => 'Siar';
|
||||
|
||||
@override
|
||||
String get bottomSheetLabel => 'Bileog Íochtarach';
|
||||
|
||||
@override
|
||||
String get calendarModeButtonLabel => 'Athraigh go féilire';
|
||||
|
||||
@override
|
||||
String get cancelButtonLabel => 'Cealaigh';
|
||||
|
||||
@override
|
||||
String get clearButtonTooltip => 'Glan an téacs';
|
||||
|
||||
@override
|
||||
String get closeButtonLabel => 'Dún';
|
||||
|
||||
@override
|
||||
String get closeButtonTooltip => 'Dún';
|
||||
|
||||
@override
|
||||
String get collapsedHint => 'Leathnaithe';
|
||||
|
||||
@override
|
||||
String get collapsedIconTapHint => 'Leathnaigh';
|
||||
|
||||
@override
|
||||
String get continueButtonLabel => 'Lean ar aghaidh';
|
||||
|
||||
@override
|
||||
String get copyButtonLabel => 'Cóipeáil';
|
||||
|
||||
@override
|
||||
String get currentDateLabel => 'Inniu';
|
||||
|
||||
@override
|
||||
String get cutButtonLabel => 'Gearr';
|
||||
|
||||
@override
|
||||
String get dateHelpText => 'll/mm/bbbb';
|
||||
|
||||
@override
|
||||
String get dateInputLabel => 'Cuir Isteach Dáta';
|
||||
|
||||
@override
|
||||
String get dateOutOfRangeLabel => 'Lasmuigh den raon.';
|
||||
|
||||
@override
|
||||
String get datePickerHelpText => 'Roghnaigh dáta';
|
||||
|
||||
@override
|
||||
String get dateRangeEndDateSemanticLabelRaw => r'Dáta deiridh $fullDate';
|
||||
|
||||
@override
|
||||
String get dateRangeEndLabel => 'Dáta Deiridh';
|
||||
|
||||
@override
|
||||
String get dateRangePickerHelpText => 'Roghnaigh raon';
|
||||
|
||||
@override
|
||||
String get dateRangeStartDateSemanticLabelRaw => r'Dáta tosaigh $fullDate';
|
||||
|
||||
@override
|
||||
String get dateRangeStartLabel => 'Dáta Tosaigh';
|
||||
|
||||
@override
|
||||
String get dateSeparator => '/';
|
||||
|
||||
@override
|
||||
String get deleteButtonTooltip => 'Scrios';
|
||||
|
||||
@override
|
||||
String get dialModeButtonLabel => 'Athraigh go mód roghnóra aghaidh an chloig';
|
||||
|
||||
@override
|
||||
String get dialogLabel => 'Dialóg';
|
||||
|
||||
@override
|
||||
String get drawerLabel => 'Roghchlár nascleanúna';
|
||||
|
||||
@override
|
||||
String get expandedHint => 'Laghdaithe';
|
||||
|
||||
@override
|
||||
String get expandedIconTapHint => 'Laghdaigh';
|
||||
|
||||
@override
|
||||
String get expansionTileCollapsedHint => 'tapáil faoi dhó chun leathnú';
|
||||
|
||||
@override
|
||||
String get expansionTileCollapsedTapHint => 'Leathnaigh chun tuilleadh sonraí a fháil';
|
||||
|
||||
@override
|
||||
String get expansionTileExpandedHint => 'tapáil faoi dhó chun laghdú';
|
||||
|
||||
@override
|
||||
String get expansionTileExpandedTapHint => 'Laghdaigh';
|
||||
|
||||
@override
|
||||
String get firstPageTooltip => 'An chéad leathanach';
|
||||
|
||||
@override
|
||||
String get hideAccountsLabel => 'Folaigh cuntais';
|
||||
|
||||
@override
|
||||
String get inputDateModeButtonLabel => 'Athraigh go hionchur';
|
||||
|
||||
@override
|
||||
String get inputTimeModeButtonLabel => 'Athraigh go mód ionchuir téacs';
|
||||
|
||||
@override
|
||||
String get invalidDateFormatLabel => 'Formáid neamhbhailí.';
|
||||
|
||||
@override
|
||||
String get invalidDateRangeLabel => 'Raon neamhbhailí.';
|
||||
|
||||
@override
|
||||
String get invalidTimeLabel => 'Cuir isteach am bailí';
|
||||
|
||||
@override
|
||||
String get keyboardKeyAlt => 'Alt';
|
||||
|
||||
@override
|
||||
String get keyboardKeyAltGraph => 'AltGr';
|
||||
|
||||
@override
|
||||
String get keyboardKeyBackspace => 'Cúlspás';
|
||||
|
||||
@override
|
||||
String get keyboardKeyCapsLock => 'Glas Ceannlitreacha';
|
||||
|
||||
@override
|
||||
String get keyboardKeyChannelDown => 'Cainéal Síos';
|
||||
|
||||
@override
|
||||
String get keyboardKeyChannelUp => 'Cainéal Suas';
|
||||
|
||||
@override
|
||||
String get keyboardKeyControl => 'Ctrl';
|
||||
|
||||
@override
|
||||
String get keyboardKeyDelete => 'Del';
|
||||
|
||||
@override
|
||||
String get keyboardKeyEject => 'Caith amach';
|
||||
|
||||
@override
|
||||
String get keyboardKeyEnd => 'End';
|
||||
|
||||
@override
|
||||
String get keyboardKeyEscape => 'Esc';
|
||||
|
||||
@override
|
||||
String get keyboardKeyFn => 'Fn';
|
||||
|
||||
@override
|
||||
String get keyboardKeyHome => 'Baile';
|
||||
|
||||
@override
|
||||
String get keyboardKeyInsert => 'Insert';
|
||||
|
||||
@override
|
||||
String get keyboardKeyMeta => 'Meta';
|
||||
|
||||
@override
|
||||
String get keyboardKeyMetaMacOs => 'Ordú';
|
||||
|
||||
@override
|
||||
String get keyboardKeyMetaWindows => 'Win';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumLock => 'Uimhirghlas';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpad0 => 'Num 0';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpad1 => 'Num 1';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpad2 => 'Num 2';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpad3 => 'Num 3';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpad4 => 'Num 4';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpad5 => 'Num 5';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpad6 => 'Num 6';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpad7 => 'Num 7';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpad8 => 'Num 8';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpad9 => 'Num 9';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpadAdd => 'Num +';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpadComma => 'Num ,';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpadDecimal => 'Num .';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpadDivide => 'Num /';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpadEnter => 'Num Enter';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpadEqual => 'Num =';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpadMultiply => 'Num *';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpadParenLeft => 'Num (';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpadParenRight => 'Num )';
|
||||
|
||||
@override
|
||||
String get keyboardKeyNumpadSubtract => 'Num -';
|
||||
|
||||
@override
|
||||
String get keyboardKeyPageDown => 'PgDown';
|
||||
|
||||
@override
|
||||
String get keyboardKeyPageUp => 'PgUp';
|
||||
|
||||
@override
|
||||
String get keyboardKeyPower => 'Cumhacht';
|
||||
|
||||
@override
|
||||
String get keyboardKeyPowerOff => 'Múch';
|
||||
|
||||
@override
|
||||
String get keyboardKeyPrintScreen => 'Priontáil Scáileán';
|
||||
|
||||
@override
|
||||
String get keyboardKeyScrollLock => 'Scrollghlas';
|
||||
|
||||
@override
|
||||
String get keyboardKeySelect => 'Roghnaigh';
|
||||
|
||||
@override
|
||||
String get keyboardKeyShift => 'Shift';
|
||||
|
||||
@override
|
||||
String get keyboardKeySpace => 'Space';
|
||||
|
||||
@override
|
||||
String get lastPageTooltip => 'An leathanach deiridh';
|
||||
|
||||
@override
|
||||
String? get licensesPackageDetailTextFew => r'$licenseCount cheadúnas';
|
||||
|
||||
@override
|
||||
String? get licensesPackageDetailTextMany => r'$licenseCount gceadúnas';
|
||||
|
||||
@override
|
||||
String? get licensesPackageDetailTextOne => 'Aon cheadúnas amháin';
|
||||
|
||||
@override
|
||||
String get licensesPackageDetailTextOther => r'$licenseCount ceadúnas';
|
||||
|
||||
@override
|
||||
String? get licensesPackageDetailTextTwo => r'$licenseCount cheadúnas';
|
||||
|
||||
@override
|
||||
String? get licensesPackageDetailTextZero => null;
|
||||
|
||||
@override
|
||||
String get licensesPageTitle => 'Ceadúnais';
|
||||
|
||||
@override
|
||||
String get lookUpButtonLabel => 'Cuardaigh';
|
||||
|
||||
@override
|
||||
String get menuBarMenuLabel => 'Roghchlár an bharra roghchláir';
|
||||
|
||||
@override
|
||||
String get menuDismissLabel => 'Ruaig an roghchlár';
|
||||
|
||||
@override
|
||||
String get modalBarrierDismissLabel => 'Ruaig';
|
||||
|
||||
@override
|
||||
String get moreButtonTooltip => 'Tuilleadh';
|
||||
|
||||
@override
|
||||
String get nextMonthTooltip => 'An chéad mhí eile';
|
||||
|
||||
@override
|
||||
String get nextPageTooltip => 'An chéad leathanach eile';
|
||||
|
||||
@override
|
||||
String get okButtonLabel => 'Ceart go leor';
|
||||
|
||||
@override
|
||||
String get openAppDrawerTooltip => 'Oscail an roghchlár nascleanúna';
|
||||
|
||||
@override
|
||||
String get pageRowsInfoTitleRaw => r'$firstRow-$lastRow de $rowCount';
|
||||
|
||||
@override
|
||||
String get pageRowsInfoTitleApproximateRaw => r'$firstRow–$lastRow de thuairim is $rowCount';
|
||||
|
||||
@override
|
||||
String get pasteButtonLabel => 'Greamaigh';
|
||||
|
||||
@override
|
||||
String get popupMenuLabel => 'Roghchlár aníos';
|
||||
|
||||
@override
|
||||
String get postMeridiemAbbreviation => 'I.N.';
|
||||
|
||||
@override
|
||||
String get previousMonthTooltip => 'An mhí roimhe';
|
||||
|
||||
@override
|
||||
String get previousPageTooltip => 'An leathanach roimhe seo';
|
||||
|
||||
@override
|
||||
String get refreshIndicatorSemanticLabel => 'Athnuaigh';
|
||||
|
||||
@override
|
||||
String? get remainingTextFieldCharacterCountFew => r'$remainingCount charachtar fágtha';
|
||||
|
||||
@override
|
||||
String? get remainingTextFieldCharacterCountMany => r'$remainingCount gcarachtar fágtha';
|
||||
|
||||
@override
|
||||
String? get remainingTextFieldCharacterCountOne => 'Aon charachtar amháin fágtha';
|
||||
|
||||
@override
|
||||
String get remainingTextFieldCharacterCountOther => r'$remainingCount carachtar fágtha';
|
||||
|
||||
@override
|
||||
String? get remainingTextFieldCharacterCountTwo => r'$remainingCount charachtar fágtha';
|
||||
|
||||
@override
|
||||
String? get remainingTextFieldCharacterCountZero => null;
|
||||
|
||||
@override
|
||||
String get reorderItemDown => 'Bog síos';
|
||||
|
||||
@override
|
||||
String get reorderItemLeft => 'Bog ar chlé';
|
||||
|
||||
@override
|
||||
String get reorderItemRight => 'Bog ar dheis';
|
||||
|
||||
@override
|
||||
String get reorderItemToEnd => 'Bog chuig an deireadh';
|
||||
|
||||
@override
|
||||
String get reorderItemToStart => 'Bog chuig an tús';
|
||||
|
||||
@override
|
||||
String get reorderItemUp => 'Bog suas';
|
||||
|
||||
@override
|
||||
String get rowsPerPageTitle => 'Rónna in aghaidh an leathanaigh:';
|
||||
|
||||
@override
|
||||
String get saveButtonLabel => 'Sábháil';
|
||||
|
||||
@override
|
||||
String get scanTextButtonLabel => 'Scan téacs';
|
||||
|
||||
@override
|
||||
String get scrimLabel => 'Scrioma';
|
||||
|
||||
@override
|
||||
String get scrimOnTapHintRaw => r'Dún $modalRouteContentName';
|
||||
|
||||
@override
|
||||
ScriptCategory get scriptCategory => ScriptCategory.englishLike;
|
||||
|
||||
@override
|
||||
String get searchFieldLabel => 'Cuardaigh';
|
||||
|
||||
@override
|
||||
String get searchWebButtonLabel => 'Cuardaigh an Gréasán';
|
||||
|
||||
@override
|
||||
String get selectAllButtonLabel => 'Roghnaigh gach rud';
|
||||
|
||||
@override
|
||||
String get selectYearSemanticsLabel => 'Roghnaigh bliain';
|
||||
|
||||
@override
|
||||
String get selectedDateLabel => 'Roghnaithe';
|
||||
|
||||
@override
|
||||
String? get selectedRowCountTitleFew => r'$selectedRowCount mhír roghnaithe';
|
||||
|
||||
@override
|
||||
String? get selectedRowCountTitleMany => r'$selectedRowCount mír roghnaithe';
|
||||
|
||||
@override
|
||||
String? get selectedRowCountTitleOne => 'Aon mhír amháin roghnaithe';
|
||||
|
||||
@override
|
||||
String get selectedRowCountTitleOther => r'$selectedRowCount mír roghnaithe';
|
||||
|
||||
@override
|
||||
String? get selectedRowCountTitleTwo => r'$selectedRowCount mhír roghnaithe';
|
||||
|
||||
@override
|
||||
String? get selectedRowCountTitleZero => null;
|
||||
|
||||
@override
|
||||
String get shareButtonLabel => 'Comhroinn';
|
||||
|
||||
@override
|
||||
String get showAccountsLabel => 'Taispeáin cuntais';
|
||||
|
||||
@override
|
||||
String get showMenuTooltip => 'Taispeáin an roghchlár';
|
||||
|
||||
@override
|
||||
String get signedInLabel => 'Sínithe isteach';
|
||||
|
||||
@override
|
||||
String get tabLabelRaw => r'Cluaisín $tabIndex de $tabCount';
|
||||
|
||||
@override
|
||||
TimeOfDayFormat get timeOfDayFormatRaw => TimeOfDayFormat.HH_colon_mm;
|
||||
|
||||
@override
|
||||
String get timePickerDialHelpText => 'Roghnaigh am';
|
||||
|
||||
@override
|
||||
String get timePickerHourLabel => 'Uair';
|
||||
|
||||
@override
|
||||
String get timePickerHourModeAnnouncement => 'Roghnaigh uaireanta';
|
||||
|
||||
@override
|
||||
String get timePickerInputHelpText => 'Cuir isteach am';
|
||||
|
||||
@override
|
||||
String get timePickerMinuteLabel => 'Nóiméad';
|
||||
|
||||
@override
|
||||
String get timePickerMinuteModeAnnouncement => 'Roghnaigh nóiméid';
|
||||
|
||||
@override
|
||||
String get unspecifiedDate => 'Dáta';
|
||||
|
||||
@override
|
||||
String get unspecifiedDateRange => 'Raon Dátaí';
|
||||
|
||||
@override
|
||||
String get viewLicensesButtonLabel => 'Féach ar cheadúnais';
|
||||
}
|
||||
|
||||
/// The translations for Galician (`gl`).
|
||||
class MaterialLocalizationGl extends GlobalMaterialLocalizations {
|
||||
/// Create an instance of the translation bundle for Galician.
|
||||
@ -46044,6 +46540,7 @@ final Set<String> kMaterialSupportedLanguages = HashSet<String>.from(const <Stri
|
||||
'fi', // Finnish
|
||||
'fil', // Filipino Pilipino
|
||||
'fr', // French
|
||||
'ga', // Irish
|
||||
'gl', // Galician
|
||||
'gsw', // Swiss German Alemannic Alsatian
|
||||
'gu', // Gujarati
|
||||
@ -46137,6 +46634,7 @@ final Set<String> kMaterialSupportedLanguages = HashSet<String>.from(const <Stri
|
||||
/// * `fi` - Finnish
|
||||
/// * `fil` - Filipino Pilipino
|
||||
/// * `fr` - French (plus one country variation)
|
||||
/// * `ga` - Irish
|
||||
/// * `gl` - Galician
|
||||
/// * `gsw` - Swiss German Alemannic Alsatian
|
||||
/// * `gu` - Gujarati
|
||||
@ -46331,6 +46829,8 @@ GlobalMaterialLocalizations? getMaterialTranslation(
|
||||
}
|
||||
return MaterialLocalizationFr(fullYearFormat: fullYearFormat, compactDateFormat: compactDateFormat, shortDateFormat: shortDateFormat, mediumDateFormat: mediumDateFormat, longDateFormat: longDateFormat, yearMonthFormat: yearMonthFormat, shortMonthDayFormat: shortMonthDayFormat, decimalFormat: decimalFormat, twoDigitZeroPaddedFormat: twoDigitZeroPaddedFormat);
|
||||
}
|
||||
case 'ga':
|
||||
return MaterialLocalizationGa(fullYearFormat: fullYearFormat, compactDateFormat: compactDateFormat, shortDateFormat: shortDateFormat, mediumDateFormat: mediumDateFormat, longDateFormat: longDateFormat, yearMonthFormat: yearMonthFormat, shortMonthDayFormat: shortMonthDayFormat, decimalFormat: decimalFormat, twoDigitZeroPaddedFormat: twoDigitZeroPaddedFormat);
|
||||
case 'gl':
|
||||
return MaterialLocalizationGl(fullYearFormat: fullYearFormat, compactDateFormat: compactDateFormat, shortDateFormat: shortDateFormat, mediumDateFormat: mediumDateFormat, longDateFormat: longDateFormat, yearMonthFormat: yearMonthFormat, shortMonthDayFormat: shortMonthDayFormat, decimalFormat: decimalFormat, twoDigitZeroPaddedFormat: twoDigitZeroPaddedFormat);
|
||||
case 'gsw':
|
||||
|
158
packages/flutter_localizations/lib/src/l10n/material_ga.arb
Normal file
158
packages/flutter_localizations/lib/src/l10n/material_ga.arb
Normal file
@ -0,0 +1,158 @@
|
||||
{
|
||||
"remainingTextFieldCharacterCountFew": "$remainingCount charachtar fágtha",
|
||||
"licensesPackageDetailTextTwo": "$licenseCount cheadúnas",
|
||||
"licensesPackageDetailTextFew": "$licenseCount cheadúnas",
|
||||
"licensesPackageDetailTextMany": "$licenseCount gceadúnas",
|
||||
"selectedRowCountTitleTwo": "$selectedRowCount mhír roghnaithe",
|
||||
"selectedRowCountTitleFew": "$selectedRowCount mhír roghnaithe",
|
||||
"selectedRowCountTitleMany": "$selectedRowCount mír roghnaithe",
|
||||
"remainingTextFieldCharacterCountTwo": "$remainingCount charachtar fágtha",
|
||||
"remainingTextFieldCharacterCountMany": "$remainingCount gcarachtar fágtha",
|
||||
"openAppDrawerTooltip": "Oscail an roghchlár nascleanúna",
|
||||
"backButtonTooltip": "Siar",
|
||||
"clearButtonTooltip": "Glan an téacs",
|
||||
"closeButtonTooltip": "Dún",
|
||||
"deleteButtonTooltip": "Scrios",
|
||||
"moreButtonTooltip": "Tuilleadh",
|
||||
"nextMonthTooltip": "An chéad mhí eile",
|
||||
"previousMonthTooltip": "An mhí roimhe",
|
||||
"nextPageTooltip": "An chéad leathanach eile",
|
||||
"previousPageTooltip": "An leathanach roimhe seo",
|
||||
"firstPageTooltip": "An chéad leathanach",
|
||||
"lastPageTooltip": "An leathanach deiridh",
|
||||
"showMenuTooltip": "Taispeáin an roghchlár",
|
||||
"scrimLabel": "Scrioma",
|
||||
"scriptCategory": "English-like",
|
||||
"timeOfDayFormat": "HH:mm",
|
||||
"bottomSheetLabel": "Bileog Íochtarach",
|
||||
"scrimOnTapHint": "Dún $modalRouteContentName",
|
||||
"aboutListTileTitle": "Maidir le $applicationName",
|
||||
"licensesPageTitle": "Ceadúnais",
|
||||
"licensesPackageDetailTextOne": "Aon cheadúnas amháin",
|
||||
"licensesPackageDetailTextOther": "$licenseCount ceadúnas",
|
||||
"pageRowsInfoTitle": "$firstRow-$lastRow de $rowCount",
|
||||
"pageRowsInfoTitleApproximate": "$firstRow–$lastRow de thuairim is $rowCount",
|
||||
"rowsPerPageTitle": "Rónna in aghaidh an leathanaigh:",
|
||||
"tabLabel": "Cluaisín $tabIndex de $tabCount",
|
||||
"selectedRowCountTitleOne": "Aon mhír amháin roghnaithe",
|
||||
"selectedRowCountTitleOther": "$selectedRowCount mír roghnaithe",
|
||||
"cancelButtonLabel": "Cealaigh",
|
||||
"closeButtonLabel": "Dún",
|
||||
"continueButtonLabel": "Lean ar aghaidh",
|
||||
"copyButtonLabel": "Cóipeáil",
|
||||
"cutButtonLabel": "Gearr",
|
||||
"scanTextButtonLabel": "Scan téacs",
|
||||
"lookUpButtonLabel": "Cuardaigh",
|
||||
"searchWebButtonLabel": "Cuardaigh an Gréasán",
|
||||
"shareButtonLabel": "Comhroinn",
|
||||
"okButtonLabel": "Ceart go leor",
|
||||
"pasteButtonLabel": "Greamaigh",
|
||||
"selectAllButtonLabel": "Roghnaigh gach rud",
|
||||
"viewLicensesButtonLabel": "Féach ar cheadúnais",
|
||||
"anteMeridiemAbbreviation": "R.N.",
|
||||
"postMeridiemAbbreviation": "I.N.",
|
||||
"timePickerHourModeAnnouncement": "Roghnaigh uaireanta",
|
||||
"timePickerMinuteModeAnnouncement": "Roghnaigh nóiméid",
|
||||
"modalBarrierDismissLabel": "Ruaig",
|
||||
"menuDismissLabel": "Ruaig an roghchlár",
|
||||
"dateSeparator": "/",
|
||||
"dateHelpText": "ll/mm/bbbb",
|
||||
"selectYearSemanticsLabel": "Roghnaigh bliain",
|
||||
"unspecifiedDate": "Dáta",
|
||||
"unspecifiedDateRange": "Raon Dátaí",
|
||||
"dateInputLabel": "Cuir Isteach Dáta",
|
||||
"dateRangeStartLabel": "Dáta Tosaigh",
|
||||
"dateRangeEndLabel": "Dáta Deiridh",
|
||||
"dateRangeStartDateSemanticLabel": "Dáta tosaigh $fullDate",
|
||||
"dateRangeEndDateSemanticLabel": "Dáta deiridh $fullDate",
|
||||
"invalidDateFormatLabel": "Formáid neamhbhailí.",
|
||||
"invalidDateRangeLabel": "Raon neamhbhailí.",
|
||||
"dateOutOfRangeLabel": "Lasmuigh den raon.",
|
||||
"saveButtonLabel": "Sábháil",
|
||||
"datePickerHelpText": "Roghnaigh dáta",
|
||||
"dateRangePickerHelpText": "Roghnaigh raon",
|
||||
"calendarModeButtonLabel": "Athraigh go féilire",
|
||||
"inputDateModeButtonLabel": "Athraigh go hionchur",
|
||||
"timePickerDialHelpText": "Roghnaigh am",
|
||||
"timePickerInputHelpText": "Cuir isteach am",
|
||||
"timePickerHourLabel": "Uair",
|
||||
"timePickerMinuteLabel": "Nóiméad",
|
||||
"invalidTimeLabel": "Cuir isteach am bailí",
|
||||
"dialModeButtonLabel": "Athraigh go mód roghnóra aghaidh an chloig",
|
||||
"inputTimeModeButtonLabel": "Athraigh go mód ionchuir téacs",
|
||||
"signedInLabel": "Sínithe isteach",
|
||||
"hideAccountsLabel": "Folaigh cuntais",
|
||||
"showAccountsLabel": "Taispeáin cuntais",
|
||||
"drawerLabel": "Roghchlár nascleanúna",
|
||||
"menuBarMenuLabel": "Roghchlár an bharra roghchláir",
|
||||
"popupMenuLabel": "Roghchlár aníos",
|
||||
"dialogLabel": "Dialóg",
|
||||
"alertDialogLabel": "Foláireamh",
|
||||
"searchFieldLabel": "Cuardaigh",
|
||||
"currentDateLabel": "Inniu",
|
||||
"selectedDateLabel": "Roghnaithe",
|
||||
"reorderItemToStart": "Bog chuig an tús",
|
||||
"reorderItemToEnd": "Bog chuig an deireadh",
|
||||
"reorderItemUp": "Bog suas",
|
||||
"reorderItemDown": "Bog síos",
|
||||
"reorderItemLeft": "Bog ar chlé",
|
||||
"reorderItemRight": "Bog ar dheis",
|
||||
"expandedIconTapHint": "Laghdaigh",
|
||||
"collapsedIconTapHint": "Leathnaigh",
|
||||
"expansionTileExpandedHint": "tapáil faoi dhó chun laghdú",
|
||||
"expansionTileCollapsedHint": "tapáil faoi dhó chun leathnú",
|
||||
"expansionTileExpandedTapHint": "Laghdaigh",
|
||||
"expansionTileCollapsedTapHint": "Leathnaigh chun tuilleadh sonraí a fháil",
|
||||
"expandedHint": "Laghdaithe",
|
||||
"collapsedHint": "Leathnaithe",
|
||||
"remainingTextFieldCharacterCountOne": "Aon charachtar amháin fágtha",
|
||||
"remainingTextFieldCharacterCountOther": "$remainingCount carachtar fágtha",
|
||||
"refreshIndicatorSemanticLabel": "Athnuaigh",
|
||||
"keyboardKeyAlt": "Alt",
|
||||
"keyboardKeyAltGraph": "AltGr",
|
||||
"keyboardKeyBackspace": "Cúlspás",
|
||||
"keyboardKeyCapsLock": "Glas Ceannlitreacha",
|
||||
"keyboardKeyChannelDown": "Cainéal Síos",
|
||||
"keyboardKeyChannelUp": "Cainéal Suas",
|
||||
"keyboardKeyControl": "Ctrl",
|
||||
"keyboardKeyDelete": "Del",
|
||||
"keyboardKeyEject": "Caith amach",
|
||||
"keyboardKeyEnd": "End",
|
||||
"keyboardKeyEscape": "Esc",
|
||||
"keyboardKeyFn": "Fn",
|
||||
"keyboardKeyHome": "Baile",
|
||||
"keyboardKeyInsert": "Insert",
|
||||
"keyboardKeyMeta": "Meta",
|
||||
"keyboardKeyMetaMacOs": "Ordú",
|
||||
"keyboardKeyMetaWindows": "Win",
|
||||
"keyboardKeyNumLock": "Uimhirghlas",
|
||||
"keyboardKeyNumpad1": "Num 1",
|
||||
"keyboardKeyNumpad2": "Num 2",
|
||||
"keyboardKeyNumpad3": "Num 3",
|
||||
"keyboardKeyNumpad4": "Num 4",
|
||||
"keyboardKeyNumpad5": "Num 5",
|
||||
"keyboardKeyNumpad6": "Num 6",
|
||||
"keyboardKeyNumpad7": "Num 7",
|
||||
"keyboardKeyNumpad8": "Num 8",
|
||||
"keyboardKeyNumpad9": "Num 9",
|
||||
"keyboardKeyNumpad0": "Num 0",
|
||||
"keyboardKeyNumpadAdd": "Num +",
|
||||
"keyboardKeyNumpadComma": "Num ,",
|
||||
"keyboardKeyNumpadDecimal": "Num .",
|
||||
"keyboardKeyNumpadDivide": "Num /",
|
||||
"keyboardKeyNumpadEnter": "Num Enter",
|
||||
"keyboardKeyNumpadEqual": "Num =",
|
||||
"keyboardKeyNumpadMultiply": "Num *",
|
||||
"keyboardKeyNumpadParenLeft": "Num (",
|
||||
"keyboardKeyNumpadParenRight": "Num )",
|
||||
"keyboardKeyNumpadSubtract": "Num -",
|
||||
"keyboardKeyPageDown": "PgDown",
|
||||
"keyboardKeyPageUp": "PgUp",
|
||||
"keyboardKeyPower": "Cumhacht",
|
||||
"keyboardKeyPowerOff": "Múch",
|
||||
"keyboardKeyPrintScreen": "Priontáil Scáileán",
|
||||
"keyboardKeyScrollLock": "Scrollghlas",
|
||||
"keyboardKeySelect": "Roghnaigh",
|
||||
"keyboardKeyShift": "Shift",
|
||||
"keyboardKeySpace": "Space"
|
||||
}
|
Loading…
Reference in New Issue
Block a user