Skip to content
This repository has been archived by the owner on Aug 23, 2021. It is now read-only.

itering/subscan-locale

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

subscan-locale

Subscan uses Vue I18n for language localization.

This repo contains locale file for Subscan, PRs are welcome.

Contribute

Please spend several minutes reading these notes before you create an issue or pull request.

Do not Change Variable Name

For example, this is a snippet in en.json, the word currency is a variable and should be left as it is.

//en.json
"balance_currency": "Balance {currency}",


//zh-CN.json
"balance_currency": "余额 {currency}",  //good case

"balance_currency": "余额 {货币}",  //bad case

Pay Attention to Letter Case

Some languages are case-sensitive, thus you should be careful with the letter case and make it consistent with the source file.

//en.json
"balance_currency": "Balance {currency}",


//ru.json
"balance_currency": "Баланс {currency}",  //good case

"balance_currency": "баланс {currency}",  //bad case

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published