Lahmizzar Muinela
2014-03-09 2168fa7de10285d480bbf57bf59bf6228aef7286
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
#!/bin/bash
 
# Copyright (C) 1997 - 2014 devXive - research and development
#
# The scriptfile is licensed under the Apache License, Version 2.0 (the "License");
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# The content of static vars and/or static echo output is licensed under the
# devXive Proprietary Use License (http://devxive.com/legal/license)
#
# Author:  devXive, Lahmizzar Muinela
# Email:   support@devxive.com
# Twitter: @devxive
# Website: http://devxive.com
#
#
# Description:
# Simple script to pull tx translatons and build manifest files
# This script is to take control about what language will be pulled and stored in the language pack
# If you add a language, please have a look at the .tx/config file first and check if the language exists.
#
# This script is invoked by the create script
 
sourcePath=$(realpath .)
 
txClient="../../transifex-client/tx"
version="$1"
 
$txClient pull -l ar_AA
$sourcePath/builder/buildManifest ar-AA ar_AA $version
 
$txClient pull -l nl_NL
$sourcePath/builder/buildManifest nl-NL nl_NL $version
 
$txClient pull -l fr_FR
$sourcePath/builder/buildManifest fr-FR fr_FR $version
 
$txClient pull -l de_DE
$sourcePath/builder/buildManifest de-DE de_DE $version
 
$txClient pull -l hu_HU
$sourcePath/builder/buildManifest hu-HU hu_HU $version
 
$txClient pull -l pt_BR
$sourcePath/builder/buildManifest pt-BR pt_BR $version
 
$txClient pull -l ru_RU
$sourcePath/builder/buildManifest ru-RU ru_RU $version
 
$txClient pull -l tr_TR
$sourcePath/builder/buildManifest tr-TR tr_TR $version
 
$txClient pull -l eu_ES
$sourcePath/builder/buildManifest eu-ES eu_ES $version
 
$txClient pull -l cs_CZ
$sourcePath/builder/buildManifest cs-CZ cs_CZ $version
 
$txClient pull -l da_DK
$sourcePath/builder/buildManifest da-DK da_DK $version
 
$txClient pull -l es_ES
$sourcePath/builder/buildManifest es-ES es_ES $version
 
$txClient pull -l nb_NO
$sourcePath/builder/buildManifest nb-NO nb_NO $version
 
$txClient pull -l pl_PL
$sourcePath/builder/buildManifest pl-PL pl_PL $version
 
$txClient pull -l th_TH
$sourcePath/builder/buildManifest th-TH th_TH $version
 
$txClient pull -l ca_ES
$sourcePath/builder/buildManifest ca-ES ca_ES $version
 
$txClient pull -l zh_TW
$sourcePath/builder/buildManifest zh-TW zh_TW $version
 
$txClient pull -l it_IT
$sourcePath/builder/buildManifest it-IT it_IT $version
 
$txClient pull -l ja_JP
$sourcePath/builder/buildManifest ja-JP ja_JP $version
 
$txClient pull -l ro_RO
$sourcePath/builder/buildManifest ro-RO ro_RO $version
 
$txClient pull -l pt_PT
$sourcePath/builder/buildManifest pt-PT pt_PT $version
 
$txClient pull -l el_GR
$sourcePath/builder/buildManifest el-GR el_GR $version
 
$txClient pull -l sv_SE
$sourcePath/builder/buildManifest sv-SE sv_SE $version
 
$txClient pull -l sk_SK
$sourcePath/builder/buildManifest sk-SK sk_SK $version
 
$txClient pull -l uk_UA
$sourcePath/builder/buildManifest uk-UA uk_UA $version
 
$txClient pull -l nl_BE
$sourcePath/builder/buildManifest nl-BE nl_BE $version
 
$txClient pull -l bg_BG
$sourcePath/builder/buildManifest bg-BG bg_BG $version
 
$txClient pull -l fa_IR
$sourcePath/builder/buildManifest fa-IR fa_IR $version
 
$txClient pull -l es_MX
$sourcePath/builder/buildManifest es-MX es_MX $version