-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
296 lines (233 loc) · 10.3 KB
/
index.js
File metadata and controls
296 lines (233 loc) · 10.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
const fs = require("fs");
const path = require("path");
const { OpenAI } = require("openai");
const organization = '';
const project = '';
const openai = new OpenAI({
organization,
project,
apiKey: ""
});
async function translateWithChatGPT(text, targetLanguage) {
try {
const response = await openai.chat.completions.create({
model: "gpt-4o",
messages: [
{
role: "system",
content: "Você é um tradutor especializado. Retorne apenas o texto traduzido sem informações adicionais."
},
{
role: "user",
content: `Translate the text to ${targetLanguage.toLowerCase() === 'ar' ? 'Arabic' : targetLanguage}: ${text}`
}
],
});
console.log(response.choices)
return response.choices[0].message.content.trim().replaceAll('"', '')
} catch (error) {
console.error("Erro na tradução com ChatGPT:", error.message);
throw error;
}
}
async function updateI18nFiles(dirPath, labelName, enValue) {
const failedTranslations = [];
try {
if (!fs.existsSync(dirPath)) {
console.error("Diretório não encontrado.");
return;
}
const files = fs.readdirSync(dirPath).filter(file => file.endsWith(".json"));
if (files.length === 0) {
console.error("Nenhum arquivo JSON encontrado no diretório.");
return;
}
for (const file of files) {
const filePath = path.join(dirPath, file);
const language = path.basename(file, ".json");
const rawContent = fs.readFileSync(filePath, "utf-8");
const fileContent = rawContent.trim() ? JSON.parse(rawContent) : null;
if (!fileContent || Object.keys(fileContent).length === 0) {
console.log(`Arquivo vazio ou sem conteúdo relevante: ${file}`);
continue;
}
if (fileContent[labelName]) {
console.log(`A label "${labelName}" já existe em ${file}. Atualizando valor.`);
try {
const translatedValue =
language === "en"
? enValue
: await translateWithChatGPT(enValue, language);
fileContent[labelName] = translatedValue;
fs.writeFileSync(filePath, JSON.stringify(fileContent, null, 2));
console.log(`Atualizado valor da label "${labelName}" em ${file}`);
} catch (translateError) {
console.error(`Falha ao traduzir e atualizar para ${language} no arquivo ${file}:, translateError.message`);
failedTranslations.push(file);
}
continue;
}
try {
const translatedValue =
language === "en"
? enValue
: await translateWithChatGPT(enValue, language);
const entries = Object.entries(fileContent);
const insertIndex = entries.findIndex(([key]) => key.localeCompare(labelName) > 0);
if (insertIndex !== -1) {
entries.splice(insertIndex, 0, [labelName, translatedValue]);
} else {
entries.push([labelName, translatedValue]);
}
const sortedContent = Object.fromEntries(entries);
fs.writeFileSync(filePath, JSON.stringify(sortedContent, null, 2));
console.log(`Adicionada label "${labelName}" em ${file}`);
} catch (translateError) {
console.error(`Falha ao traduzir para ${language} no arquivo ${file}:, ${translateError}`);
failedTranslations.push(file);
}
}
if (failedTranslations.length > 0) {
console.log("\nArquivos com falha na tradução:");
failedTranslations.forEach(file => console.log(`- ${file}`));
}
} catch (error) {
console.error("Erro ao processar os arquivos:", error);
}
}
async function removeI18nLabel(dirPath, labelName) {
try {
if (!fs.existsSync(dirPath)) {
console.error("Diretório não encontrado.");
return;
}
const files = fs.readdirSync(dirPath).filter(file => file.endsWith(".json"));
if (files.length === 0) {
console.error("Nenhum arquivo JSON encontrado no diretório.");
return;
}
for (const file of files) {
const filePath = path.join(dirPath, file);
const rawContent = fs.readFileSync(filePath, "utf-8");
const fileContent = rawContent.trim() ? JSON.parse(rawContent) : null;
if (!fileContent || Object.keys(fileContent).length === 0) {
console.log(`Arquivo vazio ou sem conteúdo relevante: ${file}`);
continue;
}
if (fileContent[labelName]) {
delete fileContent[labelName];
fs.writeFileSync(filePath, JSON.stringify(fileContent, null, 2));
console.log(`Label "${labelName}" removida do arquivo ${file}`);
} else {
console.log(`Label "${labelName}" não encontrada no arquivo ${file}`);
}
}
} catch (error) {
console.error("Erro ao remover a label:", error);
}
}
async function changeToCamelCase(dirPath, labelName) {
const failedTranslations = [];
try {
if (!fs.existsSync(dirPath)) {
console.error("Diretório não encontrado.");
return;
}
const files = fs.readdirSync(dirPath).filter(file => file.endsWith(".json"));
if (files.length === 0) {
console.error("Nenhum arquivo JSON encontrado no diretório.");
return;
}
for (const file of files) {
const filePath = path.join(dirPath, file);
const language = path.basename(file, ".json").replace('-IN', '').replace('-SI', '');
const rawContent = fs.readFileSync(filePath, "utf-8");
const fileContent = rawContent.trim() ? JSON.parse(rawContent) : null;
if (!fileContent || Object.keys(fileContent).length === 0) {
console.log(`Arquivo vazio ou sem conteúdo relevante: ${file}`);
continue;
}
if (fileContent[labelName]) {
console.log(`A label "${labelName}" já existe em ${file}. Atualizando valor.`);
try {
fileContent[labelName] = fileContent[labelName][0]+fileContent[labelName].slice(1).toLowerCase();
fs.writeFileSync(filePath, JSON.stringify(fileContent, null, 2));
console.log(`Atualizado valor da label "${labelName}" para ${fileContent[labelName][0]+fileContent[labelName].slice(1).toLowerCase()} em ${file}`);
} catch (translateError) {
console.error(`Falha ao traduzir e atualizar para ${language} no arquivo ${file}:`, translateError.message);
failedTranslations.push(file);
}
continue;
}
}
}catch(error){
console.log(error)
}
}
async function changeToUpperCase(dirPath, labelName) {
const failedTranslations = [];
try {
if (!fs.existsSync(dirPath)) {
console.error("Diretório não encontrado.");
return;
}
const files = fs.readdirSync(dirPath).filter(file => file.endsWith(".json"));
if (files.length === 0) {
console.error("Nenhum arquivo JSON encontrado no diretório.");
return;
}
for (const file of files) {
const filePath = path.join(dirPath, file);
const language = path.basename(file, ".json").replace('-IN', '').replace('-SI', '');
const rawContent = fs.readFileSync(filePath, "utf-8");
const fileContent = rawContent.trim() ? JSON.parse(rawContent) : null;
if (!fileContent || Object.keys(fileContent).length === 0) {
console.log(`Arquivo vazio ou sem conteúdo relevante: ${file}`);
continue;
}
if (fileContent[labelName]) {
console.log(`A label "${labelName}" já existe em ${file}. Atualizando valor.`);
try {
fileContent[labelName] = fileContent[labelName].toUpperCase();
fs.writeFileSync(filePath, JSON.stringify(fileContent, null, 2));
console.log(`Atualizado valor da label "${labelName}" para ${fileContent[labelName][0]+fileContent[labelName].slice(1).toLowerCase()} em ${file}`);
} catch (translateError) {
console.error(`Falha ao traduzir e atualizar para ${language} no arquivo ${file}:`, translateError.message);
failedTranslations.push(file);
}
continue;
}
}
}catch(error){
console.log(error)
}
}
// Uso do script
const dirPath = "/Users/otaviostasiak/Documents/rocketchat/Rocket.Chat.ReactNative/app/i18n/locales"; // Path for i18n folder
const labelName = ""; // label name
const enValue = ""; // Valor in english
async function handleStart(flag) {
switch (flag) {
case 'camel':
await changeToCamelCase(dirPath, labelName);
break;
case 'new':
await updateI18nFiles(dirPath, labelName, enValue);
break;
case 'upper':
await changeToUpperCase(dirPath, labelName);
case 'delete':
await removeI18nLabel(dirPath, labelName)
default:
console.log("Invalid flag. Use --camel or --new.");
}
}
// Parse the command-line argument
const args = process.argv.slice(2); // Get arguments after "node script.js"
const flag = args[0]?.replace('--', ''); // Extract flag and remove "--" prefix
// Verify the flag and call the function
if (flag) {
handleStart(flag);
} else {
console.log("No flag provided. Use --camel or --new.");
}