Simple tools for check ngx-translate keys in Angular applications in whole app which use regexp.
for
react-intlusereact-intl-lintfor
react-i18nextusereact-i18next-lintfor
desktopusengx-translate-editor
There are a lot of translation ngx-translate keys in the whole app.
This repository contains a proposal to check all translation keys in the whole app
which should exist in all languages files.
npm install ngx-translate-lint -gThe source code are available for download at GitHub Releases and GitHub pages as well.
Usage: ngx-translate-lint [options]
Simple CLI tools for check `ngx-translate` keys in app
Options:
-p, --project [glob]
The path to project folder
Possible Values: <relative path|absolute path>
-l, --languages [glob]
The path to languages folder
Possible Values: <relative path|absolute path|URL>
--kv, --keysOnViews [enum]
Described how to handle the error of missing keys on view
Possible Values: <disable|warning|error>
--zk, --zombieKeys [enum]
Described how to handle the error of zombies keys. Zombie keys are keys that doesn't exist on any languages file but exist on project, or exist languages but doesn't exist on project
Possible Values: <disable|warning|error>
--ek, --emptyKeys [enum]
Described how to handle empty value on translate keys. Empty keys are keys that doesn't have any value on languages files
Possible Values: <disable|warning|error>
-i, --ignore [glob]
Ignore projects and languages files
Possible Values: <relative path|absolute path>
--maxWarning [glob]
Max count of warnings in all files. If this value more that count of warnings, then an error is return
Possible Values: <number>
--mk, --misprintKeys [enum]
Try to find matches with misprint keys on views and languages keys. Coefficient: 0.9. Can be longer process!!
Possible Values: <disable|warning|error>
--ds, --deepSearch [enum]
Add each translate key to global regexp end try to find them on project. Can be longer process!!
Possible Values: <disable|enable>
--mc, --misprintCoefficient [number]
Coefficient for misprint option can be from 0 to 1.0.
-c, --config [path]
Path to config via JSON or JS file
Possible Values: <relative path|absolute path>
--fz, --fixZombiesKeys [boolean]
Auto fix zombies keys on languages files
-v, --version Print current version of ngx-translate-lint
-h, --help display help for command
Examples:
$ ngx-translate-lint -p ./src/app/**/*.{html,ts,resx} -l ./src/assets/i18n/*.json
$ ngx-translate-lint -p ./src/app/**/*.{html,ts,resx} -z disable -v error
$ ngx-translate-lint -p ./src/app/**/*.{html,ts,resx} -i ./src/assets/i18n/EN-us.json, ./src/app/app.*.{json}
$ ngx-translate-lint -p ./src/app/**/*.{html,ts,resx} -l https://8.8.8.8/locales/EN-eu.json
NOTE: For
projectandlanguagesoptions need to include file types like on the example.
Default JSON Config is:
{
"rules": {
"keysOnViews": "error",
"zombieKeys": "warning",
"misprintKeys": "disable",
"deepSearch": "disable",
"emptyKeys": "warning",
"maxWarning": "0",
"misprintCoefficient": "0.9",
"ignoredKeys": [ "IGNORED.KEY.(.*)" ], // can be string or RegExp
"ignoredMisprintKeys": [],
"customRegExpToFindKeys": [ "(?<=marker\\(['\"])([A-Za-z0-9_\\-.]+)(?=['\"]\\))"], // to find: marker('TRSNLATE.KEY');
},
"fetch": {
"requestQuery": "",
"requestHeaders": {},
"responseQuery": ""
},
"fixZombiesKeys": false,
"project": "./src/app/**/*.{html,ts}",
"languages": "./src/assets/i18n/*.json"
}JS Config should have default export via object like config. See example:
Example JS config is:
const config = {
rules: {
keysOnViews: "error",
zombieKeys: "warning",
emptyKeys: "warning",
misprint: {
type: "warning",
coefficient: 0.9
},
ignoredKeys: [],
ignoredMisprintKeys: []
},
fetch: {
requestQuery: "",
requestHeaders: {},
responseQuery: "",
get: async () => {
const requestOne = fetch('https://8.8.8.8/locales/EN-eu.json');
const requestTwo = fetch('https://8.8.8.8/locales/EN-us.json');
const result = await Promise.all([requestOne, requestTwo]).then(async ([responseOne, responseTwo]) => {
return {
...(await responseOne.json()),
...(await responseTwo.json())
}
});
// NOTE: result should contains only translation keys. Example
// {
// "translation.key": "value"
// }
return result;
}
},
fixZombiesKeys: false,
project: "./src/app/**/*.{html,ts}",
languages: "./src/assets/i18n/*.json"
}
export default config;We have (?<=marker\\(['\"])([A-Za-z0-9_\\-.]+)(?=['\"]\\)) RegExp witch contains of 3 parts:
-
Prefix -
(?<=marker\\(['\"])- This construction tells that what we need matching before translate key
- start with
(?<=and end). marker\\(['\"]- tells that we try to find wordmarketwitch have on the second character'or"- To summarize, we are trying to find keys before each word to be
marketand commas'or"
-
Matching for key:
([A-Za-z0-9_\\-.]+)- This construction tells that we find and save all words which contain alphabet, numbers, and
_or-. - We recommend using this part of RegExp to find and save translated keys
- But you can also use
(.*)If it's enough for your project
- This construction tells that we find and save all words which contain alphabet, numbers, and
-
Postfix -
(?=['\"]\\))(the same as prefix, but need to be ended)- This construction tells that what we need matching after translate key
- start with
(?=and end) ['\"]\\)- tells that we try to find word comas'or"and ended with)- To summarize, we are trying to find keys ended each word to be commas
'or"and)
Example RegExp will find following keys
marker('TRSNLATE.KEY')marker("TRSNLATE.KEY-2")
The CLI process may exit with the following codes:
0: Linting succeeded without errors (warnings may have occurred)1: Linting failed with one or more rule violations with severity error2: An invalid command line argument or combination thereof was used
import {
ToggleRule,
NgxTranslateLint,
IRulesConfig,
ResultCliModel,
ErrorTypes,
LanguagesModel,
IFetch,
ngxTranslateRegEx,
} from 'ngx-translate-lint';
const viewsPath: string = './src/app/**/*.{html,ts}';
const languagesPath: string = './src/assets/i18n/*.json';
const ignoredLanguagesPath: string = "./src/assets/i18n/ru.json, ./src/assets/i18n/ru-RU.json";
const ruleConfig: IRulesConfig = {
keysOnViews: ErrorTypes.error,
zombieKeys: ErrorTypes.warning,
misprintKeys: ErrorTypes.disable,
deepSearch: ToggleRule.disable,
emptyKeys: ErrorTypes.warning,
maxWarning: 0,
misprintCoefficient: 0.9,
fixZombiesKeys: false,
ignoredKeys: ['EXAMPLE.KEY', 'IGNORED.KEY.(.*)'], // can be string or RegExp
ignoredMisprintKeys: [],
customRegExpToFindKeys: ["(?<=marker\\(['\"])([A-Za-z0-9_\\-.]+)(?=['\"]\\))"] // to find: marker('TRSNLATE.KEY');
};
const fixZombiesKeys: boolean = false;
const fetchSettings: IFetch = {
requestQuery: "",
requestHeaders: {},
responseQuery: "",
get: () => {
// You fetch to get locales
}
};
const ngxTranslateRegEx: ngxTranslateRegEx = ngxTranslateRegEx; // Here can be your array of regexp to find keys
const ngxTranslateLint = new NgxTranslateLint(viewsPath, languagesPath, ignoredLanguagesPath, ruleConfig, fixZombiesKeys, fetchSettings, ngxTranslateRegEx)
const resultLint: ResultCliModel = ngxTranslateLint.lint(); // Run Lint
const languages: LanguagesModel[] = ngxTranslateLint.getLanguages() // Get Languages with all keys and viewsYou may contribute in several ways like requesting new features, adding tests, fixing bugs, improving documentation or examples. Please check our contributing guidelines.
Here can be your extensions:
- ngx-translate-editor - Simple GUI for CRUD translate keys of ngx-translate, which included ngx-translate-lint
- 121 Platform - 121 is an open source platform for Cash based Aid built with Digital Identity & Local/Global Financial service partners.