about summary refs log tree commit diff
path: root/config/webpack/generateLocalePacks.js
AgeCommit message (Collapse)Author
2023-04-08Move locale-data back to `app/javascript/mastodon/locales/locale-data` (#2169)Claire
This reduces differences with upstream and fixes a bunch of locale-data files having been forgotten.
2022-12-21Change locales file generation to use JSON sources (#2028)Claire
* Change locales file generation to use JSON sources Instead of inheriting in JS files, set locale inheritance in the theme's YML file, and inherit in the generated locale file, rather than the source file. * Convert glitch-soc JS translation files to JSON Obtained running the following: ```sh sed -i -z "s/import inherited from '.*';\s*\nconst messages = //" *.js sed -i "s/\s*\/\/.*//" *.js sed -i -z "s/;\s*export default .*/\n/" *.js for i in *.js; do json5 $i | json_pp > ${i}on; done ``` * Change `yarn manage:translations` to exclude any translation already defined upstream * Run yarn manage:translations
2017-12-10Javascript intl8n flavour supportkibigo!
2017-11-20Finalized theme loading and stuffkibigo!
2017-07-16split added glitch locales from vanilla (#82)Ondřej Hruška
* Locale script now accepts overrides and new keys from glitch/locales * Revert glitchsoc changes to mastodon/locales to prevent future merge conflicts
2017-06-06Add quotes ESLint rules (#3602)Yamagishi Kazutoshi
* Add quotes ESLint rule * Add jsx-quotes ESlint rule * Sort ESLint rules
2017-05-22Only load Intl data for current language (#3130)Nolan Lawson
* Only load Intl data for current language * Extract common chunk only from application.js and public.js * Generate locale packs, avoid caching on window object