diff --git a/docs/docs/notification-center/react-components.md b/docs/docs/notification-center/react-components.md index 211bad4ba5f..e01830fa0ef 100644 --- a/docs/docs/notification-center/react-components.md +++ b/docs/docs/notification-center/react-components.md @@ -186,6 +186,7 @@ The `i18n` prop can accept 2 different types of values
  • fa (Farsi)
  • fi (Finnish)
  • fr (French)
  • +
  • ga (Irish)
  • gl (Galician)
  • gu (Gujarati)
  • he (Hebrew)
  • diff --git a/packages/notification-center/src/i18n/lang.ts b/packages/notification-center/src/i18n/lang.ts index 71bbaf74a0b..3a8c9674ad1 100644 --- a/packages/notification-center/src/i18n/lang.ts +++ b/packages/notification-center/src/i18n/lang.ts @@ -54,6 +54,7 @@ import { UZ } from './languages/uz'; import { TH } from './languages/th'; import { HE } from './languages/he'; import { KM } from './languages/km'; +import { GA } from './languages/ga'; import { HY } from './languages/hy'; import { KK } from './languages/kk'; import { TL } from './languages/tl'; @@ -128,6 +129,7 @@ export const TRANSLATIONS: Record = { th: TH, he: HE, km: KM, + ga: GA, hy: HY, kk: KK, tl: TL, @@ -202,6 +204,7 @@ export type I18NLanguage = | 'lo' | 'th' | 'he' + | 'ga' | 'hy' | 'kk' | 'km' diff --git a/packages/notification-center/src/i18n/languages/ga.ts b/packages/notification-center/src/i18n/languages/ga.ts new file mode 100644 index 00000000000..66596b69120 --- /dev/null +++ b/packages/notification-center/src/i18n/languages/ga.ts @@ -0,0 +1,11 @@ +import { ITranslationEntry } from '../lang'; + +export const GA: ITranslationEntry = { + translations: { + notifications: 'Fógraí', + markAllAsRead: 'Marcáil go léir mar a léitear', + poweredBy: 'Cumhachtaithe ag', + settings: 'Socruithe', + }, + lang: 'ga', +};