2
2
/* Scans for strings that may be in English in each app, and
3
3
outputs a list of strings that have been found.
4
4
5
- Early work towards internationalisation.
6
- See https://github.com/espruino/BangleApps/issues/136
5
+ See https://github.com/espruino/BangleApps/issues/1311
7
6
*/
8
7
8
+ var IGNORE_STRINGS = [
9
+ "5x5" ,
10
+ "5x9Numeric7Seg" ,
11
+ "Vector"
12
+ ] ;
13
+
9
14
var BASEDIR = __dirname + "/../" ;
10
15
Espruino = require ( BASEDIR + "core/lib/espruinotools.js" ) ;
11
16
var fs = require ( "fs" ) ;
12
-
13
17
var APPSDIR = BASEDIR + "apps/" ;
18
+
14
19
function ERROR ( s ) {
15
20
console . error ( "ERROR: " + s ) ;
16
21
process . exit ( 1 ) ;
17
22
}
18
23
function WARN ( s ) {
19
24
console . log ( "Warning: " + s ) ;
20
25
}
26
+ function log ( s ) {
27
+ console . log ( s ) ;
28
+ }
21
29
22
30
var appsFile , apps ;
23
31
try {
@@ -39,31 +47,65 @@ function isNotString(s) {
39
47
if ( s . endsWith ( ".json" ) || s . endsWith ( ".img" ) ) return true ; // a filename
40
48
if ( s . endsWith ( "=" ) ) return true ; // probably base64
41
49
if ( s . startsWith ( "BTN" ) ) return true ; // button name
50
+ if ( IGNORE_STRINGS . includes ( s ) ) return true ; // one we know to ignore
42
51
return false ;
43
52
}
44
53
45
- var textStrings = [ ] ;
54
+ // A string that *could* be translated?
55
+ var untranslatedStrings = [ ] ;
56
+ // Strings that are marked with 'LANG'
57
+ var translatedStrings = [ ] ;
46
58
47
- console . log ( "Scanning..." ) ;
59
+ console . log ( "Scanning apps ..." ) ;
48
60
apps . forEach ( ( app , appIdx ) => {
49
61
var appDir = APPSDIR + app . id + "/" ;
50
62
app . storage . forEach ( ( file ) => {
51
63
if ( ! file . url || ! file . name . endsWith ( ".js" ) ) return ;
52
64
var fileContents = fs . readFileSync ( appDir + file . url ) . toString ( ) ;
53
65
var lex = Espruino . Core . Utils . getLexer ( fileContents ) ;
66
+ var lastIdx = 0 ;
54
67
var tok = lex . next ( ) ;
55
68
while ( tok !== undefined ) {
69
+ var previousString = fileContents . substring ( lastIdx , tok . startIdx ) ;
56
70
if ( tok . type == "STRING" ) {
57
- if ( ! isNotString ( tok . value ) ) {
58
- //console.log(tok.str);
59
- if ( ! textStrings . includes ( tok . value ) )
60
- textStrings . push ( tok . value ) ;
71
+ if ( previousString . includes ( "/*LANG*/" ) ) { // translated!
72
+ if ( ! translatedStrings . includes ( tok . value ) )
73
+ translatedStrings . push ( tok . value ) ;
74
+ } else { // untranslated - potential to translate?
75
+ if ( ! isNotString ( tok . value ) ) {
76
+ if ( ! untranslatedStrings . includes ( tok . value ) )
77
+ untranslatedStrings . push ( tok . value ) ;
78
+ }
61
79
}
62
80
}
81
+ lastIdx = tok . endIdx ;
63
82
tok = lex . next ( ) ;
64
83
}
65
84
} ) ;
66
85
} ) ;
67
- console . log ( "Done" ) ;
68
- textStrings . sort ( ) ;
69
- console . log ( textStrings . join ( "\n" ) ) ;
86
+ untranslatedStrings . sort ( ) ;
87
+ translatedStrings . sort ( ) ;
88
+
89
+ var report = "" ;
90
+ /* // too many! don't output these
91
+ log("Possible English Strings that could be translated");
92
+ log("=================================================================");
93
+ log("");
94
+ log("Add these to IGNORE_STRINGS if the don't make sense...");
95
+ log("");
96
+ log(untranslatedStrings.map(s=>JSON.stringify(s)).join(",\n"));*/
97
+ log ( "" ) ;
98
+
99
+ var languages = JSON . parse ( fs . readFileSync ( BASEDIR + "/lang/index.json" ) . toString ( ) ) ;
100
+ languages . forEach ( language => {
101
+ console . log ( "Scanning " + language . code ) ;
102
+ log ( language . code ) ;
103
+ log ( "==========" ) ;
104
+ var translations = JSON . parse ( fs . readFileSync ( BASEDIR + "/lang/" + language . url ) . toString ( ) ) ;
105
+ translatedStrings . forEach ( str => {
106
+ if ( ! translations . GLOBAL [ str ] )
107
+ console . log ( `Missing translation for ${ JSON . stringify ( str ) } ` ) ;
108
+ } ) ;
109
+ log ( "" ) ;
110
+ } ) ;
111
+ console . log ( "Done." ) ;
0 commit comments