From 5a5326bdbcb2a3c02c0340c410f6b29103c2f518 Mon Sep 17 00:00:00 2001
From: Palash Dhabale <100768184+PalashDhabale@users.noreply.github.com>
Date: Tue, 11 Oct 2022 18:52:37 +0530
Subject: [PATCH 1/7] Update react-components.md
adder Irish language
---
docs/docs/notification-center/react-components.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/docs/docs/notification-center/react-components.md b/docs/docs/notification-center/react-components.md
index abdbd3f5ed2..9ff2b18c0d4 100644
--- a/docs/docs/notification-center/react-components.md
+++ b/docs/docs/notification-center/react-components.md
@@ -222,6 +222,7 @@ The `i18n` prop can accept 2 different types of values
uz
(Uzbek)
vi
(Vietnamese)
zh
(Chinese)
+ ga
(Irish)
From f10fc010b663709072fd056baaeda37a327c9647 Mon Sep 17 00:00:00 2001
From: Palash Dhabale <100768184+PalashDhabale@users.noreply.github.com>
Date: Tue, 11 Oct 2022 18:56:23 +0530
Subject: [PATCH 2/7] Update lang.ts
---
packages/notification-center/src/i18n/lang.ts | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/packages/notification-center/src/i18n/lang.ts b/packages/notification-center/src/i18n/lang.ts
index b624e823f7f..229ca869253 100644
--- a/packages/notification-center/src/i18n/lang.ts
+++ b/packages/notification-center/src/i18n/lang.ts
@@ -50,6 +50,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';
export interface ITranslationContent {
readonly notifications: string;
@@ -116,6 +117,7 @@ export const TRANSLATIONS: Record = {
th: TH,
he: HE,
km: KM,
+ ga: GA,
};
/**
@@ -182,4 +184,5 @@ export type I18NLanguage =
| 'vi'
| 'th'
| 'he'
- | 'km';
\ No newline at end of file
+ | 'km'
+ | 'ga';
From 193edb795c756013aeb3113d932090dc8a4a4ce9 Mon Sep 17 00:00:00 2001
From: Palash Dhabale <100768184+PalashDhabale@users.noreply.github.com>
Date: Tue, 11 Oct 2022 19:00:53 +0530
Subject: [PATCH 3/7] Create ga.ts
---
packages/notification-center/src/i18n/languages/ga.ts | 11 +++++++++++
1 file changed, 11 insertions(+)
create mode 100644 packages/notification-center/src/i18n/languages/ga.ts
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..4d86e22fbad
--- /dev/null
+++ b/packages/notification-center/src/i18n/languages/ga.ts
@@ -0,0 +1,11 @@
+import { ITranslationEntry } from '../lang';
+
+export const EN: ITranslationEntry = {
+ translations: {
+ notifications: 'Fógraí',
+ markAllAsRead: 'Marcáil go léir mar a léitear',
+ poweredBy: 'Cumhachtaithe ag',
+ settings: 'Socruithe',
+ },
+ lang: 'en',
+};
From 25d82caa455a0d4075605b99035da45ab37afbb6 Mon Sep 17 00:00:00 2001
From: Palash Dhabale <100768184+PalashDhabale@users.noreply.github.com>
Date: Tue, 11 Oct 2022 19:07:41 +0530
Subject: [PATCH 4/7] Update ga.ts
---
packages/notification-center/src/i18n/languages/ga.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/notification-center/src/i18n/languages/ga.ts b/packages/notification-center/src/i18n/languages/ga.ts
index 4d86e22fbad..cab938a5a04 100644
--- a/packages/notification-center/src/i18n/languages/ga.ts
+++ b/packages/notification-center/src/i18n/languages/ga.ts
@@ -7,5 +7,5 @@ export const EN: ITranslationEntry = {
poweredBy: 'Cumhachtaithe ag',
settings: 'Socruithe',
},
- lang: 'en',
+ lang: 'ga',
};
From d7a606a5a7191b85066dd67bce411afc91293ec0 Mon Sep 17 00:00:00 2001
From: Palash Dhabale <100768184+PalashDhabale@users.noreply.github.com>
Date: Tue, 11 Oct 2022 19:08:07 +0530
Subject: [PATCH 5/7] Update ga.ts
---
packages/notification-center/src/i18n/languages/ga.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/notification-center/src/i18n/languages/ga.ts b/packages/notification-center/src/i18n/languages/ga.ts
index cab938a5a04..66596b69120 100644
--- a/packages/notification-center/src/i18n/languages/ga.ts
+++ b/packages/notification-center/src/i18n/languages/ga.ts
@@ -1,6 +1,6 @@
import { ITranslationEntry } from '../lang';
-export const EN: ITranslationEntry = {
+export const GA: ITranslationEntry = {
translations: {
notifications: 'Fógraí',
markAllAsRead: 'Marcáil go léir mar a léitear',
From 619490340c2b91db3f1c75a7e98cf044d1d5a820 Mon Sep 17 00:00:00 2001
From: Palash Dhabale <100768184+PalashDhabale@users.noreply.github.com>
Date: Wed, 12 Oct 2022 21:42:47 +0530
Subject: [PATCH 6/7] Update react-components.md
---
docs/docs/notification-center/react-components.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/docs/docs/notification-center/react-components.md b/docs/docs/notification-center/react-components.md
index 3e7b1821f77..5cd0bc69665 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)
@@ -229,7 +230,7 @@ The `i18n` prop can accept 2 different types of values
vi
(Vietnamese)
zu
(Zulu)
zh
(Chinese)
- ga
(Irish)
+
From 869d72c3790de6e2e5658777401eec2d0ab210eb Mon Sep 17 00:00:00 2001
From: Dima Grossman
Date: Thu, 13 Oct 2022 10:46:01 +0300
Subject: [PATCH 7/7] remove empty line before ul closing
---
docs/docs/notification-center/react-components.md | 1 -
1 file changed, 1 deletion(-)
diff --git a/docs/docs/notification-center/react-components.md b/docs/docs/notification-center/react-components.md
index 06e67710a82..e01830fa0ef 100644
--- a/docs/docs/notification-center/react-components.md
+++ b/docs/docs/notification-center/react-components.md
@@ -231,7 +231,6 @@ The `i18n` prop can accept 2 different types of values
vi
(Vietnamese)
zu
(Zulu)
zh
(Chinese)
-