├── .github └── workflows │ └── translator.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── assets ├── favicon.ico ├── icons │ └── copy.svg ├── locales-app.js ├── styles.css └── utils.js ├── index.html ├── locales.config.json ├── locales ├── de.json ├── de.schema.json ├── en.default.json ├── en.default.schema.json ├── es.json ├── es.schema.json ├── fr.json ├── fr.schema.json ├── it.json ├── it.schema.json ├── pt-BR.json └── pt-PT.json ├── package.json └── scripts ├── clean-locale-keys.js ├── compare-json.js ├── move-key.js ├── translate-locales.js └── update-to-new-locales.js /.github/workflows/translator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/.github/workflows/translator.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/README.md -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /assets/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/assets/icons/copy.svg -------------------------------------------------------------------------------- /assets/locales-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/assets/locales-app.js -------------------------------------------------------------------------------- /assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/assets/styles.css -------------------------------------------------------------------------------- /assets/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/assets/utils.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/index.html -------------------------------------------------------------------------------- /locales.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/locales.config.json -------------------------------------------------------------------------------- /locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/locales/de.json -------------------------------------------------------------------------------- /locales/de.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/locales/de.schema.json -------------------------------------------------------------------------------- /locales/en.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/locales/en.default.json -------------------------------------------------------------------------------- /locales/en.default.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/locales/en.default.schema.json -------------------------------------------------------------------------------- /locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/locales/es.json -------------------------------------------------------------------------------- /locales/es.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/locales/es.schema.json -------------------------------------------------------------------------------- /locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/locales/fr.json -------------------------------------------------------------------------------- /locales/fr.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/locales/fr.schema.json -------------------------------------------------------------------------------- /locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/locales/it.json -------------------------------------------------------------------------------- /locales/it.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/locales/it.schema.json -------------------------------------------------------------------------------- /locales/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/locales/pt-BR.json -------------------------------------------------------------------------------- /locales/pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/locales/pt-PT.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/package.json -------------------------------------------------------------------------------- /scripts/clean-locale-keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/scripts/clean-locale-keys.js -------------------------------------------------------------------------------- /scripts/compare-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/scripts/compare-json.js -------------------------------------------------------------------------------- /scripts/move-key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/scripts/move-key.js -------------------------------------------------------------------------------- /scripts/translate-locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/scripts/translate-locales.js -------------------------------------------------------------------------------- /scripts/update-to-new-locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archetype-themes/locales/HEAD/scripts/update-to-new-locales.js --------------------------------------------------------------------------------