i18ntk 4.3.0 → 4.3.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/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [4.3.1] - 2026-05-31
9
+
10
+ ### Fixed
11
+ - Published tarball now includes `utils/english-placeholder-checker.js`, resolving `MODULE_NOT_FOUND` at startup for `i18ntk-fixer --check-placeholders` and manager option 7.
12
+ - Language-specific CLI entry points (`main/i18ntk-go.js`, `main/i18ntk-java.js`, `main/i18ntk-js.js`, `main/i18ntk-php.js`, `main/i18ntk-py.js`) and their shared `utils/mini-commander.js` dependency are now included in the published package.
13
+ - Removed inconsistent `.js` extension suffixes from require paths in `main/i18ntk-js.js`.
14
+
8
15
  ## [4.3.0] - 2026-05-31
9
16
 
10
17
  ### Fixed
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # i18ntk v4.3.0
1
+ # i18ntk v4.3.1
2
2
 
3
3
  A i18n toolkit - A zero-dependency internationalization toolkit for setup, scanning, analysis, validation, usage tracking, translation completion, automatic JSON locale translation, reporting, and runtime translation loading.
4
4
 
@@ -9,7 +9,7 @@ A i18n toolkit - A zero-dependency internationalization toolkit for setup, scann
9
9
  [![node](https://img.shields.io/badge/node-%3E%3D16-339933)](https://nodejs.org)
10
10
  [![dependencies](https://img.shields.io/badge/dependencies-0-success)](https://www.npmjs.com/package/i18ntk)
11
11
  [![license](https://img.shields.io/badge/license-MIT-yellow.svg)](LICENSE)
12
- [![socket](https://socket.dev/api/badge/npm/package/i18ntk/4.3.0)](https://socket.dev/npm/package/i18ntk/overview/4.3.0)
12
+ [![socket](https://socket.dev/api/badge/npm/package/i18ntk/4.3.1)](https://socket.dev/npm/package/i18ntk/overview/4.3.1)
13
13
 
14
14
  ## Install
15
15
 
@@ -30,6 +30,12 @@ Requirements:
30
30
  - npm `>=8.0.0`
31
31
  - No runtime dependencies
32
32
 
33
+ ## What's New in 4.3.1
34
+
35
+ - **FIX**: Published tarball now includes `utils/english-placeholder-checker.js`, resolving `MODULE_NOT_FOUND` at startup for `i18ntk-fixer --check-placeholders` and manager option 7.
36
+ - **FIX**: Language-specific CLI entry points (`i18ntk-go`, `i18ntk-java`, `i18ntk-js`, `i18ntk-php`, `i18ntk-py`) and their shared `utils/mini-commander.js` dependency are now included in the published package.
37
+ - **FIX**: Removed inconsistent `.js` extension suffixes from require paths in `main/i18ntk-js.js`.
38
+
33
39
  ## What's New in 4.3.0
34
40
 
35
41
  - **AUTO TRANSLATE**: Existing target values like `[AR] What We Offer`, `[AR] Email`, `[zh] Email`, and `[TR] Password` are now treated as untranslated placeholders for the matching target language and are translated from the source text.
@@ -40,7 +46,7 @@ Requirements:
40
46
  - **FIX PLACEHOLDERS**: Menu option 7 now runs an English source placeholder audit and reports how many `[LANG] ...` values remain in English locale files. A clean project reports `0`.
41
47
  - **SIZING/USAGE**: Usage analysis no longer writes its inferred app source fallback back into the shared locale config, so running usage before sizing no longer makes sizing analyze the wrong directory.
42
48
  - **VALIDATION REPORTS**: Validation summary files now include warning and error details, including English-content warning payloads, instead of only totals.
43
- - **DOCS**: Versioned docs and migration guidance now reflect the current 4.3.0 command surface.
49
+ - **DOCS**: Versioned docs and migration guidance now reflect the current 4.3.1 command surface.
44
50
 
45
51
  ## What's New in 4.1.0
46
52
 
@@ -506,7 +512,7 @@ Example:
506
512
 
507
513
  ```json
508
514
  {
509
- "version": "4.3.0",
515
+ "version": "4.3.1",
510
516
  "sourceDir": "./locales",
511
517
  "i18nDir": "./locales",
512
518
  "outputDir": "./i18ntk-reports",
@@ -568,7 +574,7 @@ The public package manifest includes `readmeFilename: "README.md"`, and the rele
568
574
  - [Auto Translate Guide](./docs/auto-translate.md)
569
575
  - [Scanner Guide](./docs/scanner-guide.md)
570
576
  - [Environment Variables](./docs/environment-variables.md)
571
- - [Migration Guide v4.3.0](./docs/migration-guide-v4.3.0.md)
577
+ - [Migration Guide v4.3.1](./docs/migration-guide-v4.3.1.md)
572
578
 
573
579
  ## Security
574
580
 
@@ -0,0 +1,283 @@
1
+ #!/usr/bin/env node
2
+
3
+ /**
4
+ * i18ntk-go.js - Go Language I18n Management Command
5
+ *
6
+ * Supports:
7
+ * - Standard Go i18n patterns
8
+ * - go-i18n library
9
+ * - Custom Go i18n implementations
10
+ * - Resource file (.json, .toml) management
11
+ */
12
+
13
+ const fs = require('fs');
14
+ const path = require('path');
15
+ const SecurityUtils = require('../utils/security');
16
+ const { getConfig, saveConfig } = require('../utils/config-helper');
17
+ const I18nHelper = require('../utils/i18n-helper');
18
+ const SetupEnforcer = require('../utils/setup-enforcer');
19
+ const { program } = require('../utils/mini-commander');
20
+
21
+ (async () => {
22
+ try {
23
+ await SetupEnforcer.checkSetupCompleteAsync();
24
+ } catch (error) {
25
+ console.error('Setup check failed:', error.message);
26
+ process.exit(1);
27
+ }
28
+ })();
29
+
30
+ class GoI18nManager {
31
+ constructor() {
32
+ this.supportedPatterns = [
33
+ 'T("key")',
34
+ 'Localize("key")',
35
+ 'i18n.T("key")',
36
+ 'tr("key")',
37
+ 'message.Printer.Printf',
38
+ 'i18n.MustLocalize'
39
+ ];
40
+
41
+ this.fileExtensions = ['.go', '.mod', '.sum'];
42
+ this.resourceFormats = ['.json', '.toml', '.yaml', '.yml'];
43
+ }
44
+
45
+ async detectFramework(sourceDir) {
46
+ const goModPath = path.join(sourceDir, 'go.mod');
47
+ if (SecurityUtils.safeExistsSync(goModPath)) {
48
+ const content = SecurityUtils.safeReadFileSync(goModPath, sourceDir, 'utf8') || '';
49
+
50
+ if (content.includes('go-i18n')) return 'go-i18n-v2';
51
+ if (/x\/text\b/.test(content)) return 'golang-text';
52
+
53
+ return 'standard-go';
54
+ }
55
+
56
+ // Check for Go files
57
+ const goFiles = this.findFiles(sourceDir, '.go');
58
+ if (goFiles.length > 0) {
59
+ return 'standard-go';
60
+ }
61
+
62
+ return 'generic';
63
+ }
64
+
65
+ async extractTranslations(sourceDir, options = {}) {
66
+ const framework = await this.detectFramework(sourceDir);
67
+ const translations = new Set();
68
+
69
+ const goFiles = this.findFiles(sourceDir, '.go');
70
+
71
+ for (const file of goFiles) {
72
+ const content = SecurityUtils.safeReadFileSync(file, path.dirname(file), 'utf8') || '';
73
+
74
+ // Extract Go i18n patterns
75
+ const patterns = [
76
+ /T\("([^"]+)"\)/g,
77
+ /Localize\("([^"]+)"\)/g,
78
+ /i18n\.T\("([^"]+)"\)/g,
79
+ /tr\("([^"]+)"\)/g,
80
+ /message\.Printer\.Printf\("([^"]+)"/g,
81
+ /i18n\.MustLocalize\(&i18n\.LocalizeConfig\{MessageID:\s*"([^"]+)"/g
82
+ ];
83
+
84
+ for (const pattern of patterns) {
85
+ let match;
86
+ while ((match = pattern.exec(content)) !== null) {
87
+ translations.add(match[1]);
88
+ }
89
+ }
90
+ }
91
+
92
+ return {
93
+ framework,
94
+ translations: Array.from(translations),
95
+ files: goFiles.length,
96
+ patterns: this.supportedPatterns
97
+ };
98
+ }
99
+
100
+ async createLocaleStructure(outputDir, languages = ['en']) {
101
+ const localesDir = path.join(outputDir, 'locales');
102
+
103
+ for (const lang of languages) {
104
+ const langDir = path.join(localesDir, lang);
105
+ fs.mkdirSync(langDir, { recursive: true });
106
+
107
+ // Create Go i18n format files
108
+ SecurityUtils.safeWriteFileSync(path.join(langDir, 'active.en.toml'), `# Go i18n translations for ${lang}
109
+ [hello]
110
+ other = "Hello, World!"
111
+
112
+ [items]
113
+ one = "{{.Count}} item"
114
+ other = "{{.Count}} items"
115
+ `);
116
+
117
+ SecurityUtils.safeWriteFileSync(path.join(langDir, 'active.en.json'), JSON.stringify({
118
+ hello: "Hello, World!",
119
+ items: {
120
+ one: "{{.Count}} item",
121
+ other: "{{.Count}} items"
122
+ }
123
+ }, null, 2));
124
+ }
125
+
126
+ return localesDir;
127
+ }
128
+
129
+ findFiles(dir, extension) {
130
+ const files = [];
131
+
132
+ function traverse(currentDir) {
133
+ const items = fs.readdirSync(currentDir);
134
+
135
+ for (const item of items) {
136
+ const fullPath = path.join(currentDir, item);
137
+ const stat = fs.statSync(fullPath);
138
+
139
+ if (stat.isDirectory() && !item.startsWith('.') && item !== 'node_modules') {
140
+ traverse(fullPath);
141
+ } else if (stat.isFile() && path.extname(item) === extension) {
142
+ files.push(fullPath);
143
+ }
144
+ }
145
+ }
146
+
147
+ traverse(dir);
148
+ return files;
149
+ }
150
+
151
+ async generateReport(results, outputDir) {
152
+ const report = {
153
+ timestamp: new Date().toISOString(),
154
+ framework: results.framework,
155
+ totalTranslations: results.translations.length,
156
+ translations: results.translations,
157
+ filesProcessed: results.files,
158
+ patterns: results.patterns,
159
+ recommendations: this.getRecommendations(results)
160
+ };
161
+
162
+ const reportPath = path.join(outputDir, 'i18ntk-go-report.json');
163
+ SecurityUtils.safeWriteFileSync(reportPath, JSON.stringify(report, null, 2));
164
+
165
+ return reportPath;
166
+ }
167
+
168
+ getRecommendations(results) {
169
+ const recommendations = [];
170
+
171
+ if (results.translations.length === 0) {
172
+ recommendations.push('No translations found. Check your Go i18n patterns');
173
+ }
174
+
175
+ if (results.files === 0) {
176
+ recommendations.push('No Go files found in source directory');
177
+ }
178
+
179
+ if (results.framework === 'generic') {
180
+ recommendations.push('Consider using go-i18n library for better i18n support');
181
+ }
182
+
183
+ return recommendations;
184
+ }
185
+ }
186
+
187
+ // CLI Implementation
188
+ program
189
+ .name('i18ntk-go')
190
+ .description('Go language i18n management tool')
191
+ .version('1.10.1');
192
+
193
+ program
194
+ .command('init')
195
+ .description('Initialize Go i18n structure')
196
+ .option('-s, --source-dir <dir>', 'Source directory', './')
197
+ .option('-o, --output-dir <dir>', 'Output directory', './i18ntk-reports')
198
+ .option('-l, --languages <langs>', 'Languages (comma-separated)', 'en')
199
+ .action(async (options) => {
200
+ try {
201
+ const manager = new GoI18nManager();
202
+ const languages = options.languages.split(',');
203
+
204
+ const localesDir = await manager.createLocaleStructure(options.outputDir, languages);
205
+
206
+ console.log(`✅ Go i18n structure initialized in: ${localesDir}`);
207
+ console.log(`📊 Languages: ${languages.join(', ')}`);
208
+
209
+ } catch (error) {
210
+ console.error('❌ Error initializing Go i18n:', error.message);
211
+ process.exit(1);
212
+ }
213
+ });
214
+
215
+ program
216
+ .command('analyze')
217
+ .description('Analyze Go i18n usage')
218
+ .option('-s, --source-dir <dir>', 'Source directory', './')
219
+ .option('-o, --output-dir <dir>', 'Output directory', './i18ntk-reports')
220
+ .option('--dry-run', 'Preview without making changes')
221
+ .action(async (options) => {
222
+ try {
223
+ SecurityUtils.validatePath(options.sourceDir);
224
+
225
+ const manager = new GoI18nManager();
226
+ const results = await manager.extractTranslations(options.sourceDir);
227
+
228
+ console.log(`🔍 Framework detected: ${results.framework}`);
229
+ console.log(`📊 Files processed: ${results.files}`);
230
+ console.log(`📝 Translations found: ${results.translations.length}`);
231
+
232
+ if (!options.dryRun) {
233
+ const reportPath = await manager.generateReport(results, options.outputDir);
234
+ console.log(`📄 Report saved: ${reportPath}`);
235
+ }
236
+
237
+ } catch (error) {
238
+ console.error('❌ Error analyzing Go i18n:', error.message);
239
+ process.exit(1);
240
+ }
241
+ });
242
+
243
+ program
244
+ .command('extract')
245
+ .description('Extract Go translations')
246
+ .option('-s, --source-dir <dir>', 'Source directory', './')
247
+ .option('-o, --output-dir <dir>', 'Output directory', './locales')
248
+ .option('-l, --languages <langs>', 'Languages (comma-separated)', 'en')
249
+ .action(async (options) => {
250
+ try {
251
+ SecurityUtils.validatePath(options.sourceDir);
252
+
253
+ const manager = new GoI18nManager();
254
+ const results = await manager.extractTranslations(options.sourceDir);
255
+
256
+ await manager.createLocaleStructure(options.outputDir, options.languages.split(','));
257
+
258
+ console.log(`✅ Extracted ${results.translations.length} translations`);
259
+ console.log(`📁 Locale structure created in: ${options.outputDir}`);
260
+
261
+ } catch (error) {
262
+ console.error('❌ Error extracting Go translations:', error.message);
263
+ process.exit(1);
264
+ }
265
+ });
266
+
267
+ // Handle uncaught errors
268
+ process.on('uncaughtException', (error) => {
269
+ console.error('❌ Uncaught exception:', error.message);
270
+ process.exit(1);
271
+ });
272
+
273
+ process.on('unhandledRejection', (reason) => {
274
+ console.error('❌ Unhandled rejection:', reason);
275
+ process.exit(1);
276
+ });
277
+
278
+ // Export for programmatic use
279
+ module.exports = { GoI18nManager };
280
+
281
+ if (require.main === module) {
282
+ program.parse();
283
+ }