Locale | Flag | Language | Translated By | Status | Progress |
---|---|---|---|---|---|
id |
๐ฎ๐ฉ | Indonesian | โ | 80% | |
en-US |
๐บ๐ธ | English (US) | โ | 100% | |
en-GB |
๐ฌ๐ง | English (GB) | โ | 100% | |
bg |
๐ง๐ฌ | Bulgarian | โ | 80% | |
zh-CN |
๐จ๐ณ | Chinese (Simplified) | โ | 80% | |
zh-TW |
๐น๐ผ | Chinese (Traditional) | โ | 80% | |
hr |
๐ญ๐ท | Croatian | โ | 80% | |
cs |
๐จ๐ฟ | Czech | โ | 80% | |
da |
๐ฉ๐ฐ | Danish | โ | 80% | |
nl |
๐ณ๐ฑ | Dutch | โ | 80% | |
fi |
๐ซ๐ฎ | Finnish | โ | 80% | |
fr |
๐ซ๐ท | French | โ | 80% | |
de |
๐ฉ๐ช | German | โ | 80% | |
el |
๐ฌ๐ท | Greek | โ | 80% | |
hi |
๐ฎ๐ณ | Hindi | โ | 80% | |
hu |
๐ญ๐บ | Hungarian | โ | 80% | |
it |
๐ฎ๐น | Italian | โ | 80% | |
ja |
๐ฏ๐ต | Japanese | โ | 80% | |
ko |
๐ฐ๐ท | Korean | โ | 80% | |
lt |
๐ฑ๐น | Lithuanian | โ | 80% | |
no |
๐ณ๐ด | Norwegian | โ | 80% | |
pl |
๐ต๐ฑ | Polish | โ | 80% | |
pt-BR |
๐ง๐ท | Portuguese (Brazil) | โ | 80% | |
ro |
๐ท๐ด | Romanian | โ | 80% | |
ru |
๐ท๐บ | Russian | โ | 80% | |
es-ES |
๐ช๐ธ | Spanish (Spain) | โ | 80% | |
sv-SE |
๐ธ๐ช | Swedish | โ | 80% | |
th |
๐น๐ญ | Thai | โ | 80% | |
tr |
๐น๐ท | Turkish | โ | 80% | |
uk |
๐บ๐ฆ | Ukrainian | โ | 80% | |
vi |
๐ป๐ณ | Vietnamese | trฦฐฦกng duy khแบฃi | โ | 100% |
- Create a new file in the
locales
directory with the name of the locale (e.g.English (US)
would beEnglishUS.json
). - Copy the contents of
EnglishUS.json
into the new file. - Translate the values of the strings into the new language.
Note: Do not change the keys of the strings. Only translate the values.
e.g. "hello": "Hello"
should be "hello": "Hola"
.
Do not change "hello"
to "hola"
.
Also, do not change the keys of the strings. Only change the values.
e.g. "hello": "{{{object}}} Hello"
should be "hello": "{{{object}}} Hola"
.
Do not change {{{object}}}
this object.
Note: If you are using a text editor that does not support Unicode characters, you can use the Unicode code point instead. For example,
๐บ๐ธ
would be \uD83C\uDDFA\uD83C\uDDF8
.
- Fork this repository.
- Edit the file. (Use Visual Studio Code or Notepad++ for better editing experience.)
- Create a pull request.
- Wait for the pull request to be merged.
- Done!