Skip to content

Commit

Permalink
Fix for not displaying Kannada & Telugu app language
Browse files Browse the repository at this point in the history
  • Loading branch information
vipinpaul committed Sep 16, 2024
1 parent cc95724 commit 7b76dc9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions renderer/src/translations/i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import { Fr } from './fr';
import { Ne } from './ne';
import { Es } from './es';
import { Id } from './id';
import { Kn } from './kn';
import { Te } from './te';

i18n
.use(initReactI18next)
Expand Down Expand Up @@ -43,6 +45,12 @@ i18n
id: {
translation: Id,
},
kn: {
translation: Kn,
},
te: {
translation: Te,
},
},
});

Expand Down
2 changes: 1 addition & 1 deletion renderer/src/translations/te.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const En = {
export const Te = {
'app-name': 'స్క్రైబ్ స్క్రిప్చర్',
'new-project-page': 'క్రొత్త ప్రాజెక్ట్',
'edit-project': 'ప్రాజెక్ట్‌ని సవరించండి',
Expand Down

0 comments on commit 7b76dc9

Please sign in to comment.