forked from gorhill/uBlock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
import-crowdin.sh
executable file
·144 lines (136 loc) · 6.51 KB
/
import-crowdin.sh
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
#!/usr/bin/env bash
#
# This script assumes a linux environment
echo "*** uBlock: Importing from Crowdin archive"
SRC=~/Downloads/crowdin
rm -r $SRC
unzip -q ~/Downloads/uBlock.zip -d $SRC
DES=./src/_locales
cp $SRC/ar/messages.json $DES/ar/messages.json
cp $SRC/az/messages.json $DES/az/messages.json
cp $SRC/bg/messages.json $DES/bg/messages.json
cp $SRC/bn/messages.json $DES/bn/messages.json
cp $SRC/bs/messages.json $DES/bs/messages.json
cp $SRC/ca/messages.json $DES/ca/messages.json
cp $SRC/cs/messages.json $DES/cs/messages.json
cp $SRC/cv/messages.json $DES/cv/messages.json
cp $SRC/da/messages.json $DES/da/messages.json
cp $SRC/de/messages.json $DES/de/messages.json
cp $SRC/el/messages.json $DES/el/messages.json
cp $SRC/en-GB/messages.json $DES/en_GB/messages.json
cp $SRC/eo/messages.json $DES/eo/messages.json
cp $SRC/es-ES/messages.json $DES/es/messages.json
cp $SRC/et/messages.json $DES/et/messages.json
cp $SRC/eu/messages.json $DES/eu/messages.json
cp $SRC/fa/messages.json $DES/fa/messages.json
cp $SRC/fi/messages.json $DES/fi/messages.json
cp $SRC/fil/messages.json $DES/fil/messages.json
cp $SRC/fr/messages.json $DES/fr/messages.json
cp $SRC/fy-NL/messages.json $DES/fy/messages.json
cp $SRC/gl/messages.json $DES/gl/messages.json
cp $SRC/he/messages.json $DES/he/messages.json
cp $SRC/hi/messages.json $DES/hi/messages.json
cp $SRC/hr/messages.json $DES/hr/messages.json
cp $SRC/hu/messages.json $DES/hu/messages.json
cp $SRC/id/messages.json $DES/id/messages.json
cp $SRC/it/messages.json $DES/it/messages.json
cp $SRC/ja/messages.json $DES/ja/messages.json
cp $SRC/ka/messages.json $DES/ka/messages.json
cp $SRC/kk/messages.json $DES/kk/messages.json
cp $SRC/kn/messages.json $DES/kn/messages.json
cp $SRC/ko/messages.json $DES/ko/messages.json
cp $SRC/lt/messages.json $DES/lt/messages.json
cp $SRC/lv/messages.json $DES/lv/messages.json
cp $SRC/ml-IN/messages.json $DES/ml/messages.json
cp $SRC/mr/messages.json $DES/mr/messages.json
cp $SRC/ms/messages.json $DES/ms/messages.json
cp $SRC/nb/messages.json $DES/nb/messages.json
cp $SRC/nl/messages.json $DES/nl/messages.json
cp $SRC/pl/messages.json $DES/pl/messages.json
cp $SRC/pt-BR/messages.json $DES/pt_BR/messages.json
cp $SRC/pt-PT/messages.json $DES/pt_PT/messages.json
cp $SRC/ro/messages.json $DES/ro/messages.json
cp $SRC/ru/messages.json $DES/ru/messages.json
cp $SRC/sk/messages.json $DES/sk/messages.json
cp $SRC/sl/messages.json $DES/sl/messages.json
cp $SRC/sq/messages.json $DES/sq/messages.json
cp $SRC/sr/messages.json $DES/sr/messages.json
cp $SRC/sv-SE/messages.json $DES/sv/messages.json
cp $SRC/ta/messages.json $DES/ta/messages.json
cp $SRC/te/messages.json $DES/te/messages.json
cp $SRC/th/messages.json $DES/th/messages.json
cp $SRC/tr/messages.json $DES/tr/messages.json
cp $SRC/ur-PK/messages.json $DES/ur/messages.json
cp $SRC/uk/messages.json $DES/uk/messages.json
cp $SRC/vi/messages.json $DES/vi/messages.json
cp $SRC/zh-CN/messages.json $DES/zh_CN/messages.json
cp $SRC/zh-TW/messages.json $DES/zh_TW/messages.json
# Output files with possible misuse of `$`, as this can lead to severe
# consequences, such as not being able to run the extension at all.
# uBO does not use `$`, so any instance of `$` must be investigated.
# See https://issues.adblockplus.org/ticket/6666
echo "*** uBlock: Instances of '\$':"
grep -FR "$" $DES/
#
DES=./dist/description
cp $SRC/ar/description.txt $DES/description-ar.txt
cp $SRC/bg/description.txt $DES/description-bg.txt
cp $SRC/bn/description.txt $DES/description-bn.txt
cp $SRC/bs/description.txt $DES/description-bs.txt
cp $SRC/ca/description.txt $DES/description-ca.txt
cp $SRC/cs/description.txt $DES/description-cs.txt
cp $SRC/cv/description.txt $DES/description-cv.txt
cp $SRC/da/description.txt $DES/description-da.txt
cp $SRC/de/description.txt $DES/description-de.txt
cp $SRC/el/description.txt $DES/description-el.txt
cp $SRC/en-GB/description.txt $DES/description-en_GB.txt
cp $SRC/eo/description.txt $DES/description-eo.txt
cp $SRC/es-ES/description.txt $DES/description-es.txt
cp $SRC/et/description.txt $DES/description-et.txt
cp $SRC/eu/description.txt $DES/description-eu.txt
cp $SRC/fa/description.txt $DES/description-fa.txt
cp $SRC/fi/description.txt $DES/description-fi.txt
cp $SRC/fil/description.txt $DES/description-fil.txt
cp $SRC/fr/description.txt $DES/description-fr.txt
cp $SRC/fy-NL/description.txt $DES/description-fy.txt
cp $SRC/gl/description.txt $DES/description-gl.txt
cp $SRC/he/description.txt $DES/description-he.txt
cp $SRC/hi/description.txt $DES/description-hi.txt
cp $SRC/hr/description.txt $DES/description-hr.txt
cp $SRC/hu/description.txt $DES/description-hu.txt
cp $SRC/id/description.txt $DES/description-id.txt
cp $SRC/it/description.txt $DES/description-it.txt
cp $SRC/ja/description.txt $DES/description-ja.txt
cp $SRC/ka/description.txt $DES/description-ka.txt
cp $SRC/kk/description.txt $DES/description-kk.txt
cp $SRC/ko/description.txt $DES/description-ko.txt
cp $SRC/kn/description.txt $DES/description-kn.txt
cp $SRC/lt/description.txt $DES/description-lt.txt
cp $SRC/lv/description.txt $DES/description-lv.txt
cp $SRC/ml-IN/description.txt $DES/description-ml.txt
cp $SRC/ms/description.txt $DES/description-ms.txt
cp $SRC/mr/description.txt $DES/description-mr.txt
cp $SRC/nb/description.txt $DES/description-nb.txt
cp $SRC/nl/description.txt $DES/description-nl.txt
cp $SRC/pl/description.txt $DES/description-pl.txt
cp $SRC/pt-BR/description.txt $DES/description-pt_BR.txt
cp $SRC/pt-PT/description.txt $DES/description-pt_PT.txt
cp $SRC/ro/description.txt $DES/description-ro.txt
cp $SRC/ru/description.txt $DES/description-ru.txt
cp $SRC/sk/description.txt $DES/description-sk.txt
cp $SRC/sl/description.txt $DES/description-sl.txt
cp $SRC/sq/description.txt $DES/description-sq.txt
cp $SRC/sr/description.txt $DES/description-sr.txt
cp $SRC/sv-SE/description.txt $DES/description-sv.txt
cp $SRC/ta/description.txt $DES/description-ta.txt
cp $SRC/te/description.txt $DES/description-te.txt
cp $SRC/tr/description.txt $DES/description-tr.txt
cp $SRC/ur-PK/description.txt $DES/description-ur.txt
cp $SRC/uk/description.txt $DES/description-uk.txt
cp $SRC/vi/description.txt $DES/description-vi.txt
cp $SRC/zh-CN/description.txt $DES/description-zh_CN.txt
cp $SRC/zh-TW/description.txt $DES/description-zh_TW.txt
#
rm -r $SRC
echo "*** uBlock: Import done."
git status