aboutsummaryrefslogtreecommitdiffstats
path: root/src/I18n.tsx
diff options
context:
space:
mode:
authorLibravatar Aditya Mangalampalli <aditya.mangalampalli@gmail.com>2022-04-15 02:00:25 -0700
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-16 21:57:57 +0530
commit210131ca184c3aa043371857c022aa1aa149efbf (patch)
tree6bc4e10a1540e55a66146c099bc468a12287425e /src/I18n.tsx
parentUpdate submodule url to ferdium-recipes (#1) (diff)
downloadferdium-app-210131ca184c3aa043371857c022aa1aa149efbf.tar.gz
ferdium-app-210131ca184c3aa043371857c022aa1aa149efbf.tar.zst
ferdium-app-210131ca184c3aa043371857c022aa1aa149efbf.zip
Matched casing for almost all replacements
Diffstat (limited to 'src/I18n.tsx')
-rw-r--r--src/I18n.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/I18n.tsx b/src/I18n.tsx
index 5d969da1f..0e63d1086 100644
--- a/src/I18n.tsx
+++ b/src/I18n.tsx
@@ -18,7 +18,7 @@ type Props = {
18 18
19class I18N extends Component<Props> { 19class I18N extends Component<Props> {
20 componentDidUpdate() { 20 componentDidUpdate() {
21 window['ferdi'].menu.rebuild(); 21 window['ferdium'].menu.rebuild();
22 } 22 }
23 23
24 render() { 24 render() {
@@ -28,7 +28,7 @@ class I18N extends Component<Props> {
28 <IntlProvider 28 <IntlProvider
29 {...{ locale, key: locale, messages: translations[locale] }} 29 {...{ locale, key: locale, messages: translations[locale] }}
30 ref={intlProvider => { 30 ref={intlProvider => {
31 window['ferdi'].intl = intlProvider ? intlProvider.state.intl : null; 31 window['ferdium'].intl = intlProvider ? intlProvider.state.intl : null;
32 }} 32 }}
33 > 33 >
34 {children} 34 {children}