We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dba8c8d commit edee3abCopy full SHA for edee3ab
website/i18n.js
@@ -7,12 +7,46 @@
7
8
// The top-30 locales on Crowdin are enabled
9
// but we enable only a subset of those
10
-const locales = ['en'];
+const locales = [
11
+ 'en',
12
+ 'ja',
13
+ 'es-ES',
14
+ 'fr',
15
+ 'pt-BR',
16
+ 'ro',
17
+ 'ru',
18
+ 'uk',
19
+ 'zh-Hans',
20
+];
21
22
const localeConfigs = {
23
en: {
24
label: 'English',
25
},
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
50
};
51
52
// Docusaurus 2 i18n config
0 commit comments