Skip to content

Commit 71f5689

Browse files
committed
Fix name.
1 parent 95e0542 commit 71f5689

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

bin/totaljs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function translateFile(a) {
4545
}
4646

4747
fs.writeFileSync('translate.resource', '// Total.js translation file\n// Created: ' + new Date().format('yyyy-MM-dd HH:mm') + '\n' + builder.join('\n'));
48-
console.log('total.js: the translation was created (' + count + ' texts)');
48+
console.log('Total.js: the translation was created (' + count + ' texts)');
4949
return true;
5050
}
5151

@@ -483,7 +483,7 @@ function main() {
483483
return;
484484
}
485485

486-
console.log('total.js: creating translation');
486+
console.log('Total.js: creating translation');
487487
Utils.ls(dir, function(files) {
488488

489489
var resource = {};
@@ -541,13 +541,13 @@ function main() {
541541
builder.push('\n// ' + keys[i] + '\n' + output[keys[i]].join('\n'));
542542

543543
fs.writeFileSync('translate.resource', '// Total.js translation file\n// Created: ' + new Date().format('yyyy-MM-dd HH:mm') + '\n' + builder.join('\n'));
544-
console.log('total.js: the translation was created (' + count + ' texts)');
544+
console.log('Total.js: the translation was created (' + count + ' texts)');
545545
});
546546
return;
547547
}
548548

549549
if ($type === 6) {
550-
console.log('total.js: creating translation to CSV');
550+
console.log('Total.js: creating translation to CSV');
551551
Utils.ls(dir, function(files) {
552552

553553
var resource = {};
@@ -588,7 +588,7 @@ function main() {
588588
}
589589

590590
fs.writeFileSync('translate.csv', output.join('\n'));
591-
console.log('total.js: the translation was created (' + count + ' texts)');
591+
console.log('Total.js: the translation was created (' + count + ' texts)');
592592
});
593593
return;
594594
}

0 commit comments

Comments
 (0)