-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsnippets.bash
413 lines (379 loc) · 11.3 KB
/
snippets.bash
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
# Short snippets to run on the command line.
echo 'This is not meant to be run as a stand-alone script. Copy and paste.';
exit 1;
# Copy the translation bookmarklet from English to some other languages.
copy-2en () {
source='language/translations/2en.js';
local bookmarklet_name="$1";
local lang_name_in_english="$2";
local js_config_body="$3";
target="${source/2en/$bookmarklet_name}";
local is_in_header=true;
local is_in_function_body=false;
local is_in_js_config_body=false;
local is_in_footer=false;
while IFS=$'\n' read -r line; do
#echo "LINE: >$line<" 1>&2;
if $is_in_header; then
line="${line//2en/$bookmarklet_name}";
line="${line//English/$lang_name_in_english}";
if [ "$line" = ' */' ]; then
is_in_header=false;
is_in_function_body=true;
fi;
echo "$line";
elif $is_in_function_body; then
if [[ "$line" =~ Begin\ JS\ config\ object ]]; then
is_in_function_body=false;
is_in_js_config_body=true;
echo "$js_config_body";
else
echo "$line";
fi;
elif $is_in_js_config_body; then
if [[ "$line" =~ End\ JS\ config\ object ]]; then
is_in_js_config_body=false;
is_in_footer=true;
fi;
elif $is_in_footer; then
echo "$line";
else
echo "WTF am I? $line" 1>&2;
fi;
done < "$source" >| "$target" \
&& echo "Copied to $target ($lang_name_in_english)" \
|| echo "Failed to copy to $target ($lang_name_in_english)";
}
copy_2en_parameters=(
# ↓ Keyword/bookmarklet name (and filename)
2nl
# ↓ s/English/XXX/g in the docblock
Dutch
# ↓ JavaScript `config` object body
"
keyword: '2nl',
languageCodes: ['nl', 'nl-BE', 'nl-NL'],
languageNamesInEnglish: ['Dutch'],
languageNativeNames: ['Nederlands'],
thisPageInNativeNameTexts: ['deze pagina in het Nederlands', 'versie in het Nederlands', 'Nederlandse versie', 'Nederlandstalige versie'],
"
)
copy-2en "${copy_2en_parameters[@]}";
copy_2en_parameters=(
2de
German
"
keyword: '2de',
languageCodes: ['de', 'de-DE', 'de-AT', 'de-CH', 'de-LU'],
languageNamesInEnglish: ['German'],
languageNativeNames: ['Deutsch'],
thisPageInNativeNameTexts: ['diese Seite auf Deutsch', 'Version auf Deutsch', 'Deutsche Version'],
"
)
copy-2en "${copy_2en_parameters[@]}";
copy_2en_parameters=(
2es
Spanish
"
keyword: '2es',
languageCodes: ['es', 'es-ES'],
languageNamesInEnglish: ['Spanish'],
languageNativeNames: ['español'],
thisPageInNativeNameTexts: ['esta página en español', 'versión en español'],
"
)
copy-2en "${copy_2en_parameters[@]}";
copy_2en_parameters=(
2fr
French
"
keyword: '2fr',
languageCodes: ['fr', 'fr-FR', 'fr-BE'],
languageNamesInEnglish: ['French'],
languageNativeNames: ['français'],
thisPageInNativeNameTexts: ['cette page en français', 'version en français', 'version française', 'version francophone'],
"
)
copy-2en "${copy_2en_parameters[@]}";
copy_2en_parameters=(
2it
Italian
"
keyword: '2it',
languageCodes: ['it', 'it-IT', 'it-CH'],
languageNamesInEnglish: ['Italian'],
languageNativeNames: ['italiano'],
thisPageInNativeNameTexts: ['questa pagina in italiano', 'questo sito in italiano', 'versione in italiano'],
"
)
copy-2en "${copy_2en_parameters[@]}";
copy_2en_parameters=(
2no
Norwegian
"
keyword: '2no',
languageCodes: ['no', 'no-NO', 'nb', 'nb-NO', 'nn', 'nn-NO'],
languageNamesInEnglish: ['Norwegian'],
languageNativeNames: ['Norsk'],
thisPageInNativeNameTexts: ['denne siden på norsk', 'denne siden på bokmål', 'denne siden på nynorsk', 'norsk versjon', 'bokmålsversjon', 'nynorsk versjon', 'versjon på norsk', 'versjon på nynorsk', 'versjon på bokmål'],
"
)
copy-2en "${copy_2en_parameters[@]}";
copy_2en_parameters=(
2pt
Portuguese
"
keyword: '2pt',
languageCodes: ['pt', 'pt-PT', 'pt-BR'],
languageNamesInEnglish: ['Portuguese'],
languageNativeNames: ['português'],
thisPageInNativeNameTexts: ['esta página em português', 'este site em português', 'versão em português'],
"
)
copy-2en "${copy_2en_parameters[@]}";
copy_2en_parameters=(
2ru
Russian
"
keyword: '2ru',
languageCodes: ['ru', 'ru-RU'],
languageNamesInEnglish: ['Russian'],
languageNativeNames: ['русский'],
thisPageInNativeNameTexts: ['эта страница на русском языке', 'этот сайт на русском языке', 'русская версия'],
"
)
copy-2en "${copy_2en_parameters[@]}";
copy_2en_parameters=(
2sv
Swedish
"
keyword: '2sv',
languageCodes: ['sv', 'sv-SE'],
languageNamesInEnglish: ['Swedish'],
languageNativeNames: ['svenska'],
thisPageInNativeNameTexts: ['denna sida på svenska', 'svensk version', 'version på svenska'],
"
)
copy-2en "${copy_2en_parameters[@]}";
copy_2en_parameters=(
2vi
Vietnamese
"
keyword: '2vi',
languageCodes: ['vi', 'vi-VN'],
languageNamesInEnglish: ['Vietnamese'],
languageNativeNames: ['tiếng Việt'],
thisPageInNativeNameTexts: ['trang này bằng tiếng Việt', 'phiên bản tiếng Việt', 'sang tiếng việt'],
"
)
copy-2en "${copy_2en_parameters[@]}";
copy_2en_parameters=(
2zh
'(Mandarin) Chinese'
"
keyword: '2zh',
languageCodes: ['zh', 'zh-CN', 'zh-Hans', 'zh-TW', 'zh-Hant', 'cmn-TW'],
languageCodeForGoogleTranslate: 'zh-CN',
languageNamesInEnglish: ['Chinese'],
languageNativeNames: ['汉语', '漢語', '國語', '華語'],
thisPageInNativeNameTexts: ['为中文', '中文版', '為中文'],
"
)
copy-2en "${copy_2en_parameters[@]}";
# Copy the English Wiktionary bookmarklet for some other dictionaries.
copy-enwikt () {
local source='language/dictionaries/enwikt.js';
while [ $# -ge 3 ]; do
local keyword="$1";
shift;
local name="$1";
shift;
local in_the_dictionary="$1";
shift;
local url="$1";
shift;
local target="${source/enwikt/$keyword}";
perl -p -e "s/\benwikt\b/$keyword/g; s/in the English Wiktionary/$in_the_dictionary/g; s/English Wiktionary/$name/g; s|https://en\.wiktionary\.org/[^']+|$url|" "$source" > "$target" \
&& echo "Copied to $target ($name)" \
|| echo "Failed to copy to $target ($name)";
done;
}
COPY_ENWIKT=; copy-enwikt \
nlwikt 'Dutch Wiktionary' 'in the Dutch Wiktionary' 'https://nl.wiktionary.org/wiki/' \
dewikt 'German Wiktionary' 'in the German Wiktionary' 'https://de.wiktionary.org/wiki/' \
eswikt 'Spanish Wiktionary' 'in the Spanish Wiktionary' 'https://es.wiktionary.org/wiki/' \
frwikt 'French Wiktionary' 'in the French Wiktionary' 'https://fr.wiktionary.org/wiki/' \
itwikt 'Italian Wiktionary' 'in the Italian Wiktionary' 'https://it.wiktionary.org/wiki/' \
nowikt 'Norwegian Wiktionary' 'in the Norwegian Wiktionary' 'https://no.wiktionary.org/wiki/' \
ptwikt 'Portuguese Wiktionary' 'in the Portuguese Wiktionary' 'https://pt.wiktionary.org/wiki/' \
ruwikt 'Russian Wiktionary' 'in the Russian Wiktionary' 'https://ru.wiktionary.org/wiki/' \
svwikt 'Swedish Wiktionary' 'in the Swedish Wiktionary' 'https://sv.wiktionary.org/wiki/' \
viwikt 'Vietnamese Wiktionary' 'in the Vietnamese Wiktionary' 'https://vi.wiktionary.org/wiki/' \
zhwikt '(Mandarin) Chinese Wiktionary' 'in the (Mandarin) Chinese Wiktionary' 'https://zh.wiktionary.org/wiki/' \
vd 'Van Dale' 'in the Dutch Van Dale dictionary' 'https://www.vandale.nl/gratis-woordenboek/nederlands/betekenis/' \
vw 'Vlaams Woordenboek' 'in the “Flemish” dictionary' 'https://www.vlaamswoordenboek.be/definities/search?definition[q]=' \
oed 'O.E.D.' 'in the Oxford English dictionary' 'https://en.oxforddictionaries.com/definition/' \
mw 'Merriam-Webster' 'using Merriam-Webster' 'https://www.merriam-webster.com/dictionary/' \
dict 'Dictionary.com' 'on Dictionary.com' 'https://www.dictionary.com/browse/' \
thes 'Thesaurus.com' 'on Thesaurus.com' 'https://www.thesaurus.com/browse/' \
ud 'Urban Dictionary' 'in the Urban Dictionary' 'https://www.urbandictionary.com/define.php?term=' \
ac 'Arch Chinese' 'in the Arch Chinese dictionary' 'https://www.archchinese.com/chinese_english_dictionary.html?find=' \
;
# Copy the English Wikipedia bookmarklet to some other languages.
copy-enw () {
local source='search/wikipedia/enw.js';
local bookmarklet_name="$1";
local lang_name_in_english="$2";
local js_config_body="$3";
target="${source/enw/$bookmarklet_name}";
local is_in_header=true;
local is_in_function_body=false;
local is_in_js_config_body=false;
local is_in_footer=false;
while IFS=$'\n' read -r line; do
#echo "LINE: >$line<" 1>&2;
if $is_in_header; then
line="${line//@keyword enw/@keyword $bookmarklet_name}";
line="${line// English / $lang_name_in_english }";
if [ "$line" = ' */' ]; then
is_in_header=false;
is_in_function_body=true;
fi;
echo "$line";
elif $is_in_function_body; then
if [[ "$line" =~ Begin\ JS\ config\ object ]]; then
is_in_function_body=false;
is_in_js_config_body=true;
echo "$js_config_body";
else
echo "$line";
fi;
elif $is_in_js_config_body; then
if [[ "$line" =~ End\ JS\ config\ object ]]; then
is_in_js_config_body=false;
is_in_footer=true;
fi;
elif $is_in_footer; then
echo "$line";
else
echo "WTF am I? $line" 1>&2;
fi;
done < "$source" >| "$target" \
&& echo "Copied to $target ($lang_name_in_english)" \
|| echo "Failed to copy to $target ($lang_name_in_english)";
}
copy_enw_parameters=(
# ↓ Keyword/bookmarklet name (and filename)
nlw
# ↓ s/English/XXX/g in the docblock
Dutch
# ↓ JavaScript `config` object body
"
languageCode: 'nl',
languageNamesInEnglish: ['Dutch'],
disambigationPageSuffix: ' (doorverwijspagina)',
"
)
copy-enw "${copy_enw_parameters[@]}";
copy_enw_parameters=(
dew
German
"
languageCode: 'de',
languageNamesInEnglish: ['German'],
disambigationPageSuffix: ' (Begriffsklärung)',
"
)
copy-enw "${copy_enw_parameters[@]}";
copy_enw_parameters=(
esw
Spanish
"
languageCode: 'es',
languageNamesInEnglish: ['Spanish'],
disambigationPageSuffix: ' (desambiguación)',
"
)
copy-enw "${copy_enw_parameters[@]}";
copy_enw_parameters=(
frw
French
"
languageCode: 'fr',
languageNamesInEnglish: ['French'],
disambigationPageSuffix: ' (homonymie)',
"
)
copy-enw "${copy_enw_parameters[@]}";
copy_enw_parameters=(
itw
Italian
"
languageCode: 'it',
languageNamesInEnglish: ['Italian'],
disambigationPageSuffix: ' (disambigua)',
"
)
copy-enw "${copy_enw_parameters[@]}";
copy_enw_parameters=(
now
Norwegian
"
languageCode: 'no',
languageNamesInEnglish: ['Norwegian'],
disambigationPageSuffix: ' (andre betydninger)',
"
)
copy-enw "${copy_enw_parameters[@]}";
copy_enw_parameters=(
ptw
Portuguese
"
languageCode: 'pt',
languageNamesInEnglish: ['Portuguese'],
disambigationPageSuffix: ' (desambiguação)',
"
)
copy-enw "${copy_enw_parameters[@]}";
copy_enw_parameters=(
ruw
Russian
"
languageCode: 'ru',
languageNamesInEnglish: ['Russian'],
disambigationPageSuffix: ' (значения)',
"
)
copy-enw "${copy_enw_parameters[@]}";
copy_enw_parameters=(
svw
Swedish
"
languageCode: 'sv',
languageNamesInEnglish: ['Swedish'],
disambigationPageSuffix: ' (olika betydelser)',
"
)
copy-enw "${copy_enw_parameters[@]}";
copy_enw_parameters=(
viw
Vietnamese
"
languageCode: 'vi',
languageNamesInEnglish: ['Vietnamese'],
disambigationPageSuffix: ' (định hướng)',
"
)
copy-enw "${copy_enw_parameters[@]}";
copy_enw_parameters=(
zhw
Chinese
"
languageCode: 'zh',
languageNamesInEnglish: ['Chinese'],
disambigationPageSuffix: ' (消歧义)',
"
)
copy-enw "${copy_enw_parameters[@]}";
# Typing is hard; let's go shopping.
alias book="git commit -m 'bookmarks.html: latest update' bookmarks.html";