logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: 5f65520287d0565b48209a44163bc62327a1bd8e
parent: 82cc37a55eaf32e88748133c77901905e29172f8
Author: Henry <spam@hjkos.com>
Date:   Sun, 21 Oct 2018 20:26:36 +0000

Merge branch 'sorted-messages' into 'develop'

Sort messages object

See merge request pleroma/pleroma-fe!362

Diffstat:

Msrc/i18n/messages.js19++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/src/i18n/messages.js b/src/i18n/messages.js @@ -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