bump i18next-parser
This commit is contained in:
parent
028ccfb1cd
commit
121b036aaf
4 changed files with 4403 additions and 2584 deletions
6971
package-lock.json
generated
6971
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -253,7 +253,7 @@
|
||||||
"file-loader": "^6.2.0",
|
"file-loader": "^6.2.0",
|
||||||
"html-webpack-plugin": "^5.5.0",
|
"html-webpack-plugin": "^5.5.0",
|
||||||
"husky": "^7.0.4",
|
"husky": "^7.0.4",
|
||||||
"i18next-parser": "^6.6.0",
|
"i18next-parser": "^9.0.2",
|
||||||
"identity-obj-proxy": "^3.0.0",
|
"identity-obj-proxy": "^3.0.0",
|
||||||
"jest": "^27.5.1",
|
"jest": "^27.5.1",
|
||||||
"lint-staged": "^12.3.7",
|
"lint-staged": "^12.3.7",
|
||||||
|
|
4
release/app/package-lock.json
generated
4
release/app/package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "feishin",
|
"name": "feishin",
|
||||||
"version": "0.7.2",
|
"version": "0.7.3",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "feishin",
|
"name": "feishin",
|
||||||
"version": "0.7.2",
|
"version": "0.7.3",
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -5,7 +5,9 @@ module.exports = {
|
||||||
createOldCatalogs: true,
|
createOldCatalogs: true,
|
||||||
customValueTemplate: null,
|
customValueTemplate: null,
|
||||||
defaultNamespace: 'translation',
|
defaultNamespace: 'translation',
|
||||||
defaultValue: '',
|
defaultValue: function (locale, namespace, key, value) {
|
||||||
|
return key;
|
||||||
|
},
|
||||||
failOnUpdate: false,
|
failOnUpdate: false,
|
||||||
failOnWarnings: false,
|
failOnWarnings: false,
|
||||||
i18nextOptions: null,
|
i18nextOptions: null,
|
||||||
|
@ -37,8 +39,6 @@ module.exports = {
|
||||||
output: 'src/renderer/i18n/locales/$LOCALE.json',
|
output: 'src/renderer/i18n/locales/$LOCALE.json',
|
||||||
pluralSeparator: '_',
|
pluralSeparator: '_',
|
||||||
resetDefaultValueLocale: 'en',
|
resetDefaultValueLocale: 'en',
|
||||||
skipDefaultValues: false,
|
|
||||||
sort: true,
|
sort: true,
|
||||||
useKeysAsDefaultValue: true,
|
|
||||||
verbose: false,
|
verbose: false,
|
||||||
};
|
};
|
||||||
|
|
Reference in a new issue