i18ntk 1.8.2 → 1.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +2 -2
- package/README.md +443 -367
- package/main/i18ntk-analyze.js +20 -4
- package/main/i18ntk-complete.js +28 -11
- package/main/i18ntk-doctor.js +12 -1
- package/main/i18ntk-fixer.js +776 -654
- package/main/i18ntk-go.js +284 -0
- package/main/i18ntk-init.js +1281 -1110
- package/main/i18ntk-java.js +385 -0
- package/main/i18ntk-js.js +510 -0
- package/main/i18ntk-manage.js +1514 -1411
- package/main/i18ntk-php.js +462 -0
- package/main/i18ntk-py.js +380 -0
- package/main/i18ntk-scanner.js +636 -0
- package/main/i18ntk-settings.js +10 -0
- package/main/i18ntk-setup.js +418 -0
- package/main/i18ntk-sizing.js +16 -4
- package/main/i18ntk-summary.js +19 -5
- package/main/i18ntk-usage.js +105 -51
- package/main/i18ntk-validate.js +46 -24
- package/package.json +100 -97
- package/runtime/enhanced.d.ts +222 -0
- package/runtime/enhanced.js +553 -0
- package/runtime/i18ntk.d.ts +546 -0
- package/runtime/index.d.ts +29 -0
- package/runtime/index.full.d.ts +332 -0
- package/runtime/index.js +236 -0
- package/scripts/build-lite.js +1 -1
- package/scripts/locale-optimizer.js +5 -5
- package/scripts/verify-translations.js +62 -0
- package/settings/.i18n-admin-config.json +5 -5
- package/settings/backups/config-2025-08-15T04-43-32-801Z.json +322 -0
- package/settings/backups/config-2025-08-15T04-43-37-235Z.json +322 -0
- package/settings/i18ntk-config.json +318 -310
- package/settings/initialization.json +3 -3
- package/settings/settings-cli.js +1 -1
- package/settings/settings-manager.js +717 -681
- package/ui-locales/de.json +130 -40
- package/ui-locales/en.json +2350 -2261
- package/ui-locales/es.json +1293 -1198
- package/ui-locales/fr.json +474 -374
- package/ui-locales/ja.json +139 -37
- package/ui-locales/ru.json +347 -251
- package/ui-locales/zh.json +183 -85
- package/utils/cli-helper.js +1 -1
- package/utils/config-helper.js +7 -5
- package/utils/config-manager.js +511 -356
- package/utils/extractors/regex.js +3 -1
- package/utils/framework-detector.js +175 -50
- package/utils/json-output.js +1 -1
- package/utils/missing-key-validator.js +858 -0
- package/utils/security-check.js +0 -2
- package/utils/setup-enforcer.js +276 -0
- package/utils/setup-validator.js +716 -0
- package/scripts/admin-auth.test.js +0 -21
- package/scripts/debug/README.md +0 -34
- package/scripts/debug/debug-translation.js +0 -56
- package/scripts/debug/debugger.js +0 -250
- package/scripts/fixer.test.js +0 -90
- package/scripts/path-utils.test.js +0 -23
- package/scripts/reset-defaults.test.js +0 -18
- package/scripts/security-utils.test.js +0 -49
- package/scripts/test-enhanced-features.js +0 -152
- package/scripts/test-runner.js +0 -209
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2025
|
|
3
|
+
Copyright (c) 2025 I18NTK Management Toolkit (i18ntk v1.9.1)
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -20,4 +20,4 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
21
|
SOFTWARE.
|
|
22
22
|
|
|
23
|
-
**Last Updated**:
|
|
23
|
+
**Last Updated**: 13/08/2025
|