forked from binaryage/totalfinder-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrakefile
360 lines (290 loc) · 9.87 KB
/
rakefile
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
require 'rake'
################################################################################################
# constants
ROOT_DIR = File.expand_path('.')
FINDER_DIR = '/System/Library/CoreServices/Finder.app'
FINDER_RESOURCES_DIR = File.join(FINDER_DIR, 'Contents/Resources')
PLUGIN_RESOURCES_DIR = File.join(ROOT_DIR, 'plugin', 'Resources')
CZECH_LPROJ = File.join(PLUGIN_RESOURCES_DIR, 'Czech.lproj')
TOTALFINDER_PLUGIN_SOURCES = File.join(ROOT_DIR, '..', 'totalfinder-plugin', 'plugin')
################################################################################################
# dependencies
begin
require 'colored'
rescue LoadError
raise 'You must "gem install colored" to use terminal colors'
end
################################################################################################
# helpers
def die(msg, status=1)
puts "Error[#{status||$?}]: #{msg}".red
exit status||$?
end
def sys(cmd)
puts "> #{cmd}".yellow
system(cmd)
end
################################################################################################
# routines
def extract_code_strings
strings = ""
Dir.chdir(TOTALFINDER_PLUGIN_SOURCES) do
strings << `ack -oh '\\$\\(@".*?"\\)'` # `ack -oh '\$\(@".*?"\)'`
strings << `ack -oh '\\$\\$\\(@".*?"\\)'` # `ack -oh '\$\$\(@".*?"\)'`
end
strings = strings.split("\n").map do |s|
s =~ /(\".*\")/
$1
end
strings.uniq
end
def extract_ui_strings
strings = ""
Dir.chdir(PLUGIN_RESOURCES_DIR) do
strings << `ack -o -G '\\.xib' '\\^.*?\\<'` # search only xibs for ^SOME STRING
end
strings = strings.split("\n").map do |s|
s =~ /\^(.*)\</
'"'+$1+'"'
end
strings.uniq
end
def parse_strings_file(filename)
lines = []
File.open(filename, "r") do |f|
f.each do |line|
lines << line
end
end
lines
end
def update_czech_totalfinder_strings
target = File.join(CZECH_LPROJ, 'TotalFinder.strings')
code_strings = extract_code_strings
totalfinder_strings = parse_strings_file(target)
# comment out all existing strings as REMOVED
totalfinder_strings.map! do |line|
if (line[0...1]=='"') then
line = "/* REMOVED "+line.strip+" */\n" # ***
end
line
end
# go through code strings and try to unmark them in the file
epilogue_emmited = false
code_strings.each do |code|
found = false
totalfinder_strings.map! do |line|
if line =~ /^\/\* REMOVED/
if line.index code then
line.gsub!("REMOVED", "DUPLICIT") if found
line = line[11..-5] + "\n" unless found # see ***
found = true
end
end
line
end
unless found then
# put new strings at the end of the file
unless epilogue_emmited then
totalfinder_strings << "\n"
totalfinder_strings << "/* NEW STRINGS - TODO: SORT THEM IN OR CREATE A NEW SECTION */\n"
epilogue_emmited = true
end
totalfinder_strings << code + " = " + code + ";\n"
end
end
File.open(target, "w") do |f|
f << totalfinder_strings.join
end
end
def update_czech_localizable_strings
target = File.join(CZECH_LPROJ, 'Localizable.strings')
ui_strings = extract_ui_strings
localizable_strings = parse_strings_file(target)
# comment out all existing strings as REMOVED
localizable_strings.map! do |line|
if (line[0...1]=='"') then
line = "/* REMOVED "+line.strip+" */\n" # ***
end
line
end
# go through code strings and try to unmark them in the file
epilogue_emmited = false
ui_strings.each do |code|
found = false
localizable_strings.map! do |line|
if line =~ /^\/\* REMOVED/
if line.index code then
line.gsub!("REMOVED", "DUPLICIT") if found
line = line[11..-5] + "\n" unless found # see ***
found = true
end
end
line
end
unless found then
# put new strings at the end of the file
unless epilogue_emmited then
localizable_strings << "\n"
localizable_strings << "/* NEW STRINGS - TODO: SORT THEM IN OR CREATE A NEW SECTION */\n"
epilogue_emmited = true
end
localizable_strings << code + " = " + code + ";\n"
end
end
File.open(target, "w") do |f|
f << localizable_strings.join
end
end
def inprint_strings(source, dest)
return [] if dest =~ /English\.lproj\/TotalFinder\.strings/ # a special file - see the comment inside
strings = parse_strings_file(source)
originals = parse_strings_file(dest)
# transform czech back to english
index = 0
strings.map! do |line|
index+=1
next line unless (line.strip[0...1]=='"')
line =~ /^\s*?(".*")\s*?=\s*?(".*")\s*?;\s*?/
die "syntax error in " + source.blue+":"+index.to_s unless $1
line = $1 + " = " + $1 + ";\n";
line
end
# replace translations we already know from previsous version
index = 0
originals.each do |original|
index+=1
next unless (original.strip[0...1]=='"')
original =~ /^\s*?(".*")\s*?=\s*?(".*")\s*?;\s*?/
needle = $1
haystack = $2
die "syntax error in " + dest.blue+":"+index.to_s unless $1 and $2
found = false
strings.map! do |line|
if (line.index needle) == 0 then
line = needle + " = " + haystack + ";\n";
found = true
end
line
end
end
File.open(dest, "w") do |f|
f << strings.join
end
strings
end
def propagate_czech_to_cwd
puts Dir.pwd.blue
total = 0
total += inprint_strings(File.join(CZECH_LPROJ, 'Localizable.strings'), File.join(Dir.pwd, 'Localizable.strings')).size
total += inprint_strings(File.join(CZECH_LPROJ, 'TotalFinder.strings'), File.join(Dir.pwd, 'TotalFinder.strings')).size
puts " -> "+total.to_s.green+" strings processed"
end
def propagate_from_czech_to_other_lprojs
glob = ENV["to"] || "*.lproj"
Dir.glob(File.join(PLUGIN_RESOURCES_DIR, glob)) do |dir|
Dir.chdir dir do
propagate_czech_to_cwd
end
end
end
def exec_cmd_in_lprojs(cmd)
glob = ENV["to"] || "*.lproj"
Dir.glob(File.join(PLUGIN_RESOURCES_DIR, glob)) do |dir|
puts dir.blue
Dir.chdir dir do
sys(cmd)
end
end
end
def validate_strings_file path
lines = parse_strings_file(path)
in_multi_line_comment = false
counter = 0
lines.each do |line|
counter += 1
if in_multi_line_comment and line =~ /.*\*\/\w*$/
in_multi_line_comment = false
next
end
next if in_multi_line_comment
next if line =~ /^".*?" = ".*?";$/
next if line =~ /^\/\*.*?\*\/$/
next if line =~ /^$/
if line =~ /^\/\*[^\*]*/ then
in_multi_line_comment = true
next
end
puts "line ##{counter}: unrecognized pattern".red+" (fix rakefile if this is a valid pattern)"
puts line
puts "mate -l #{counter} \"#{path}\"".yellow
return false
end
true
end
def validate_strings_files
glob = ENV["to"] || "*.lproj"
counter = 0
failed = 0
Dir.glob(File.join(PLUGIN_RESOURCES_DIR, glob, "*.strings")) do |path|
counter += 1
ok = validate_strings_file path
puts path.blue+" "+"ok".yellow if ok
puts path.blue+" "+"failed".red unless ok
failed +=1 unless ok
end
puts "-----------------------------------"
puts "checked "+"#{counter} files".magenta+" and "+(failed>0 ? ("#{failed} failed".red) : ("all is ok".yellow))
end
################################################################################################
# tasks
desc "switch /Applications/TotalFinder.app into dev mode"
task :dev do
sys("./dev.sh")
end
desc "switch /Applications/TotalFinder.app into non-dev mode"
task :undev do
sys("./undev.sh")
end
desc "compile XIBs to NIBs (you need this only when you modify UI in the InterfaceBuilder)"
task :compile do
sys("./compile.sh")
end
desc "restart Finder.app"
task :restart do
sys("./restart.sh")
end
desc "normalize Finder.app so it contains all our language folders (run with sudo)"
task :normalize do
lprojs = File.join(ROOT_DIR, 'plugin', 'Resources', '*.lproj')
Dir.glob(lprojs) do |folder|
dir = File.join(FINDER_RESOURCES_DIR, File.basename(folder))
if File.exists? dir then
puts dir.blue + " exists".yellow
else
if !sys("mkdir -p \"#{dir}\"") then
die("Unable to create a folder. Hint: you should run this as sudo rake normalize")
end
puts dir.blue + " created".green
end
end
end
desc "cherrypicks strings from sources and applies missing strings to Czech.lproj"
task :cherrypick do
die "install ack 1.92+ | for example via homebrew:> brew install ack" if `which ack`==""
update_czech_totalfinder_strings
update_czech_localizable_strings
end
desc "propagates structure of Czech.lproj to all other language folders while keeping already translated strings"
task :propagate do
propagate_from_czech_to_other_lprojs
end
desc "exec command in all lproj folders"
task :exec do
exec_cmd_in_lprojs(ENV["cmd"] || "ls")
end
desc "validates all strings files and checks them for syntax errors"
task :validate do
validate_strings_files
end
task :default => :restart