-
Notifications
You must be signed in to change notification settings - Fork 15
/
switch_lang.sh
executable file
·131 lines (108 loc) · 1.9 KB
/
switch_lang.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
#!/bin/bash
#switch lang - swithc_lang.sh ru
git checkout $1
cd source/docs_formbuilder
echo "$(pwd)"
git checkout $1
cd ../docs_ngmanager
echo "$(pwd)"
git checkout $1
cd ../docs_ngmobile
echo "$(pwd)"
git checkout $1
cd ../docs_ngqgis
echo "$(pwd)"
git checkout $1
cd ../docs_ngweb
echo "$(pwd)"
git checkout $1
cd ../docs_ngcom
echo "$(pwd)"
git checkout $1
cd ../docs_data
echo "$(pwd)"
git checkout $1
cd ../docs_ngid
echo "$(pwd)"
git checkout $1
if [ -d "../docs_collector" ]; then
cd ../docs_collector
echo "$(pwd)"
git checkout $1
fi
if [ -d "../docs_toolbox" ]; then
cd ../docs_toolbox
echo "$(pwd)"
git checkout $1
fi
if [ -d "../docs_forestinspector" ]; then
cd ../docs_forestinspector
echo "$(pwd)"
git checkout master
fi
if [ -d "../docs_formbuilder_dev" ]; then
cd ../docs_formbuilder_dev
echo "$(pwd)"
git checkout master
fi
if [ -d "../docs_howto" ]; then
cd ../docs_howto
echo "$(pwd)"
git checkout master
fi
if [ -d "../docs_ngbio" ]; then
cd ../docs_ngbio
echo "$(pwd)"
git checkout master
fi
if [ -d "../docs_ngcourses" ]; then
cd ../docs_ngcourses
echo "$(pwd)"
git checkout master
fi
if [ -d "../docs_ngweb_dev" ]; then
cd ../docs_ngweb_dev
echo "$(pwd)"
git checkout master
fi
if [ -d "../docs_ogportal" ]; then
cd ../docs_ogportal
echo "$(pwd)"
git checkout master
fi
if [ -d "../ngmobile_dev" ]; then
cd ../ngmobile_dev
echo "$(pwd)"
if [ -d "ios_maplib_src" ]; then
cd ios_maplib_src
echo "$(pwd)"
git checkout master
cd ..
fi
if [ -d "maplib_src" ]; then
cd maplib_src
echo "$(pwd)"
git checkout master
cd ..
fi
if [ -d "maplibui_src" ]; then
cd maplibui_src
echo "$(pwd)"
git checkout master
cd ..
fi
fi
if [ -d "../qms_srv_dev" ]; then
cd ../qms_srv_dev
echo "$(pwd)"
git checkout master
fi
if [ -d "../docs_ngwdocker" ]; then
cd ../docs_ngwdocker
echo "$(pwd)"
git checkout master
fi
cd ../../
echo "$(pwd)"
git checkout $1
exit 0