fix: bengali and indonesian translations

This commit is contained in:
alexsparkes
2023-09-22 16:21:01 +01:00
parent a91ef8e596
commit 901833da91
7 changed files with 1312 additions and 943 deletions

View File

@@ -0,0 +1,8 @@
[
"Opened 10 tabs",
"Opened 39 tabs",
"Opened 100 tabs",
"Opened 305 tabs",
"Installed an add-on",
"Installed 5 add-ons"
]

View File

@@ -9,6 +9,7 @@ import ru from './ru.json';
import zh_CN from './zh_CN.json';
import id_ID from './id_ID.json';
import tr_TR from './tr_TR.json';
import bn from './bn.json';
const translations = {
de_DE,
@@ -22,6 +23,7 @@ const translations = {
zh_CN,
id_ID,
tr_TR,
bn,
};
export default translations;

View File

@@ -46,5 +46,13 @@
{
"name": "Portuguese (Brazil)",
"value": "pt_BR"
},
{
"name": "বাংলা",
"value": "bn"
},
{
"name": "bahasa Indonesia",
"value": "id_ID"
}
]

View File

@@ -13,6 +13,7 @@ import * as zh_CN from '../translations/zh_CN.json';
import * as id_ID from '../translations/id_ID.json';
import * as tr_TR from '../translations/tr_TR.json';
import * as pt_BR from '../translations/pt_BR.json';
import * as bn from '../translations/bn.json';
/**
* Initialise the i18n object.
@@ -35,6 +36,7 @@ export function initTranslations(locale) {
id_ID,
tr_TR,
pt_BR,
bn,
});
return i18n;
@@ -54,4 +56,5 @@ export const translations = {
id_ID,
tr_TR,
pt_BR,
bn,
};