Guide: how to add / edit a language #196
aleksey-hoffman
started this conversation in
Guides
Replies: 1 comment
-
The best way to find where a specifc line of text is occuring is to search the text you can already see in Sigma UI. For example:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
If you want to contribute and add / edit a language, follow these instructions:
Edit existing language
Method 1: online on Github
fi.json
for Finnish,ch.json
for Chinese);{"key": "value"}
. You should only modify thevalue
(do not touch thekey
itself). Make sure each value is wrapped with double quotes. If you have nested double quotes, use the escape symbol to ignore them, for example:"testString": "Some \"Test string\" here"
;Method 2: online on Github via VScode editor:
method 1
above;Add new language
Before you add a new language, first, open the project's localization directory: src/localization/locales and make sure the translation file for your language doesn't exist yet.
Method 1: online on Github
.json
extension and the name containing 2-letter long name (see ISO 639-1 code list), for example:en.json
for English;de.json
for German;fi.json
for Finnish;{"key": "value"}
. You should only modify thevalue
(do not touch thekey
itself). Make sure each value is wrapped with double quotes. If you have nested double quotes, use the escape symbol to ignore them, for example:"testString": "Some \"Test string\" here"
;Method 2: online on Github via VScode editor:
en.json
file;method 1
above;Beta Was this translation helpful? Give feedback.
All reactions