Skip to content

Commit edee3ab

Browse files
committed
Revert "Temporarily disable other locales to unbreak the website deploy."
This reverts commit dba8c8d.
1 parent dba8c8d commit edee3ab

File tree

1 file changed

+35
-1
lines changed

1 file changed

+35
-1
lines changed

website/i18n.js

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,46 @@
77

88
// The top-30 locales on Crowdin are enabled
99
// but we enable only a subset of those
10-
const locales = ['en'];
10+
const locales = [
11+
'en',
12+
'ja',
13+
'es-ES',
14+
'fr',
15+
'pt-BR',
16+
'ro',
17+
'ru',
18+
'uk',
19+
'zh-Hans',
20+
];
1121

1222
const localeConfigs = {
1323
en: {
1424
label: 'English',
1525
},
26+
ja: {
27+
label: '日本語',
28+
},
29+
'es-ES': {
30+
label: 'Español',
31+
},
32+
fr: {
33+
label: 'Français',
34+
},
35+
'pt-BR': {
36+
label: 'Português (Brasil)',
37+
},
38+
ro: {
39+
label: 'Română',
40+
},
41+
ru: {
42+
label: 'Русский',
43+
},
44+
uk: {
45+
label: 'Українська',
46+
},
47+
'zh-Hans': {
48+
label: '简体中文',
49+
},
1650
};
1751

1852
// Docusaurus 2 i18n config

0 commit comments

Comments
 (0)