Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 792 Bytes

readme.md

File metadata and controls

25 lines (23 loc) · 792 Bytes

BEPRO Locales

This repository is responsible for the translation of the BEPRO decentralized marketplace

Folder structure

|- locales/ 
|-- [locale-name]/
|--- [page-name].json

New translations

  • 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.