Sort messages object by language code so that it's easier from the UI to browse them.

This commit is contained in:
fadelkon 2018-10-21 22:18:38 +02:00
parent 82cc37a55e
commit ec7b7ab49c
1 changed files with 10 additions and 9 deletions

View File

@ -1,5 +1,6 @@
// When contributing, please sort JSON before committing so it would be easier to see what's missing and what's being added compared to English and other languages. It's not obligatory, but just an advice.
// To sort json use jq https://stedolan.github.io/jq and invoke it like `jq -S . xx.json > xx.sorted.json`, AFAIK, there's no inplace edit option like in sed
// Also, when adding a new language to "messages" variable, please do it alphabetically by language code so that users can search or check their custom language easily.
// For anyone contributing to old huge messages.js and in need to quickly convert it to JSON
// sed command for converting currently formatted JS to JSON:
@ -8,24 +9,24 @@
const messages = {
ar: require('./ar.json'),
ca: require('./ca.json'),
de: require('./de.json'),
fi: require('./fi.json'),
en: require('./en.json'),
eo: require('./eo.json'),
es: require('./es.json'),
et: require('./et.json'),
hu: require('./hu.json'),
ro: require('./ro.json'),
ja: require('./ja.json'),
fi: require('./fi.json'),
fr: require('./fr.json'),
he: require('./he.json'),
hu: require('./hu.json'),
it: require('./it.json'),
ja: require('./ja.json'),
nb: require('./nb.json'),
oc: require('./oc.json'),
pl: require('./pl.json'),
es: require('./es.json'),
pt: require('./pt.json'),
ru: require('./ru.json'),
nb: require('./nb.json'),
he: require('./he.json'),
ca: require('./ca.json')
ro: require('./ro.json'),
ru: require('./ru.json')
}
export default messages