This repository is responsible for the translation of the BEPRO decentralized marketplace
|- locales/
|-- [locale-name]/
|--- [page-name].json
- Create a new locale folder with the locale name under
locales/
folder - Copy the json files from
locales/en/*.json
- Translate the files into your locale under your locale folder without changing the json files names and the json keys
// example.json
{
"this-is-a-key": "This is a key",
"this-is-a-group-of-keys": {
"another-key": "value of another key inside a group of keys"
}
}
this-is-a-key
cannot be translated, its value ("This is a key"
) is what needs to change;
This also applies for any groups of keys.