c854b776f4cc4ce4f5470c091554fff84f2dc4a8
Runa A. Sandvik put the scripts in website

Runa A. Sandvik authored 14 years ago

1) #!/bin/bash
2) #
3) # Author: Runa Sandvik, <runa.sandvik@gmail.com>
4) # Google Summer of Code 2009
5) # 
6) # This is Free Software (GPLv3)
7) # http://www.gnu.org/licenses/gpl-3.0.txt
8) #
9) # This script will convert all the translated po files back to wml
10) # files.
11) #
12) # For more information, see the HOWTO and README in
13) # translation/tools/gsoc09.
14) #
15) 
16) ### start config ###
17) 
18) # Location of the wml files
19) wmldir="$PWD"
20) 
21) # Location of the po files,
Runa A. Sandvik updated scripts with new path

Runa A. Sandvik authored 13 years ago

22) podir="`dirname $wmldir`/translation/projects/website/po"
Runa A. Sandvik put the scripts in website

Runa A. Sandvik authored 14 years ago

23) 
24) # A lot of the wml files have custom tags. These tags have been defined
25) # in website/include/versions.wmi. Tags that people usually forget to close,
26) # as well as tags that are not defined in versions.wmi have been added.
27) # See: https://svn.torproject.org/svn/website/trunk/include/versions.wmi
Steven Murdoch Add a link tag for svnproje...

Steven Murdoch authored 14 years ago

28) customtag=`echo $(cat "$wmldir/include/versions.wmi" | awk '{ printf "<%s> " , $2 }' | sed 's/<>//g') "<svnsandbox> <svnwebsite> <svnprojects> <input> <hr> <br> <img> <gitblob>"`
Runa A. Sandvik put the scripts in website

Runa A. Sandvik authored 14 years ago

29) 
30) # We also need to use the nodefault option of po4a; space separated list
31) # of tags that the module should not try to set by default in any
32) # category. For now, we only need the input tag.
33) nodefault='<input>'
34) 
35) ### end config ###
36) 
37) # Create a lockfile to make sure that only one instance of the script
38) # can run at any time.
39) LOCKFILE=po2wml.lock
40) 
41) if lockfile -! -l 60 -r 3 "$LOCKFILE"; 
42) then
43) 	echo "unable to acquire lock" >2
44) 	exit 1
45) fi
46) 
47) trap "rm -f '$PWD/$LOCKFILE'" exit
48) 
49) # Check if translation/projects/website exist, i.e. has been checked out
50) if [ ! -d $podir ]
51) then
52) 	echo "Have you remembered to check out translation/projects/website?"
53) 	exit 1
54) fi
55) 
56) # cd to the right directory so we can commit the files later
57) cd "$wmldir"
58) 
59) # We need to find the po files
60) po=`find $podir -regex '^'$podir'/.*/.*\.po' -type f`
61) 
62) # For every wml, update po
63) for file in $po ; do
Runa A. Sandvik call validate.py before con...

Runa A. Sandvik authored 13 years ago

64) 
65) 	# Validate input and write results to a log file
66) 	validate_script="`dirname $wmldir`/translation/tools/validate.py"
Runa A. Sandvik updated script and new tran...

Runa A. Sandvik authored 13 years ago

67) 	validate_log="`dirname $wmldir`/validate/website-validate.log"
Runa A. Sandvik call validate.py before con...

Runa A. Sandvik authored 13 years ago

68) 	python "$validate_script" -i "$file" -l	"$validate_log"
Runa A. Sandvik put the scripts in website

Runa A. Sandvik authored 14 years ago

69) 	
70) 	# Get the basename of the file we are dealing with
71) 	pofile=`basename $file`
72) 
73) 	# Strip the file for its original extension and the translation
74) 	# priority, and add .wml
75) 	wmlfile="`echo $pofile | cut -d . -f 2`.wml"	
76) 
77) 	# Find out what directory the file is in.
78) 	indir=`dirname $file`
79) 
80) 	# We also need to know what one directory up is
81) 	onedirup=`dirname $indir`
82) 
83) 	# We need to find out what subdirectory we are in
84) 	subdir=`dirname $file | sed "s#$onedirup/##"`
85) 
86) 	# And which language we are dealing with
87) 	lang=`dirname $indir | sed "s#$podir/##"`
88) 
89) 	# Time to write the translated wml file.
90) 	# The translated document is written if 80% or more of the po
Runa A. Sandvik because functions are nice

Runa A. Sandvik authored 13 years ago

91) 	# file has been translated. Example: Use '-k 21' to set this
92) 	# number down to 21%. Also, po4a-translate will only write the
93) 	# translated document if 80% or more has been translated.
94) 	# However, it will delete the wml if less than 80% has been
Runa A. Sandvik put the scripts in website

Runa A. Sandvik authored 14 years ago

95) 	# translated. To avoid having our current, translated wml files
Runa A. Sandvik because functions are nice

Runa A. Sandvik authored 13 years ago

96) 	# deleted, convert the po to a temp wml first. If this file was
97) 	# actually written, rename it to wml.
Runa A. Sandvik put the scripts in website

Runa A. Sandvik authored 14 years ago

98) 
Runa A. Sandvik because functions are nice

Runa A. Sandvik authored 13 years ago

99) 	# Convert translations to directories such as website/nb/.
100) 	function nosubdir {
Runa A. Sandvik put the scripts in website

Runa A. Sandvik authored 14 years ago

101) 		# The location of the english wml file
102) 		english="$wmldir/en/$wmlfile"
103) 
Runa A. Sandvik do not keep old translations

Runa A. Sandvik authored 13 years ago

104) 		# Convert the translated file. Note that po4a will write the file and then delete it if less than 80% has been translated
105) 		po4a-translate -f wml -m "$english" -p "$file" -l "$wmldir/$subdir/$wmlfile" --master-charset utf-8 -L utf-8 -o customtag="$customtag" -o nodefault="$nodefault"
Runa A. Sandvik because functions are nice

Runa A. Sandvik authored 13 years ago

106) 
107) 		# Check to see if the file was written
Runa A. Sandvik do not keep old translations

Runa A. Sandvik authored 13 years ago

108)                 if [ -e "$wmldir/$subdir/$wmlfile" ]
Runa A. Sandvik if the directory is zh_CN w...

Runa A. Sandvik authored 14 years ago

109) 		then
Runa A. Sandvik because functions are nice

Runa A. Sandvik authored 13 years ago

110)                         # Remove last three lines in file
111) 			sed -i -e :a -e '$d;N;2,3ba' -e 'P;D' "$wmldir/$subdir/$wmlfile"
112) 
Runa A. Sandvik remove translator comments...

Runa A. Sandvik authored 13 years ago

113) 			# Remove lines that are translator comments
114) 			sed -i '/^<td># Translators:/ d' "$wmldir/$subdir/$wmlfile"
115) 
Runa A. Sandvik automatically fix mirrors.w...

Runa A. Sandvik authored 13 years ago

116) 			# If the file is mirrors.wml, include mirrors-table.wmi
117) 			if [ $wmlfile == "mirrors.wml" ]
118) 			then
119) 				sed -i 's/<!--PO4ASHARPBEGIN/#/' "$wmldir/$subdir/$wmlfile"
120) 				sed -i 's/PO4ASHARPEND-->//' "$wmldir/$subdir/$wmlfile"
121) 			fi
Runa A. Sandvik make sure arabic translatio...

Runa A. Sandvik authored 13 years ago

122) 
Runa A. Sandvik make sure arabic translatio...

Runa A. Sandvik authored 13 years ago

123) 			# If the file is an Arabic translation, include
124) 			# the right header, css, menu files and footer
Runa A. Sandvik make sure arabic translatio...

Runa A. Sandvik authored 13 years ago

125) 			if [ $subdir = "ar" ]
126) 			then
Runa A. Sandvik make sure arabic translatio...

Runa A. Sandvik authored 13 years ago

127) 				# Head
128) 				orig_head=`grep '#include "head.wmi"' "$wmldir/$subdir/$wmlfile"`
129) 				temp_head=`echo $orig_head | sed s@head.wmi@ar/head.wmi@`
130) 				new_head=`echo $temp_head 'STYLESHEET="css/master-rtl.css"'`
131) 				sed -i "s@$orig_head@$new_head@" "$wmldir/$subdir/$wmlfile"
132) 
133) 				# Side (not all files include this)
134) 				orig_side=`grep '#include "side.wmi"' "$wmldir/$subdir/$wmlfile"`
135) 				if [ -n "$orig_side" ]
136) 				then
137) 					new_side=`echo '#include "ar/side.wmi"'`
138) 					sed -i "s@$orig_side@$new_side@" "$wmldir/$subdir/$wmlfile"
139) 				fi
140) 
141) 				# Info (not all files include this)
142) 				orig_info=`grep '#include "info.wmi"' "$wmldir/$subdir/$wmlfile"`
143) 				if [ -n "$orig_info" ]
144) 				then
145) 					new_info=`echo '#include "ar/info.wmi"'`
146) 					sed -i "s@$orig_info@$new_info@" "$wmldir/$subdir/$wmlfile"
147) 				fi
148) 
149) 				# Footer
150) 				echo '#include "ar/foot.wmi"' >> "$wmldir/$subdir/$wmlfile"
151) 			else
152) 				# Include the English footer
153) 				echo '#include "foot.wmi"' >> "$wmldir/$subdir/$wmlfile"
Runa A. Sandvik make sure arabic translatio...

Runa A. Sandvik authored 13 years ago

154) 			fi
Runa A. Sandvik because functions are nice

Runa A. Sandvik authored 13 years ago

155) 		fi
156) 	}	
Runa A. Sandvik if the directory is zh_CN w...

Runa A. Sandvik authored 14 years ago

157) 
Runa A. Sandvik do not keep old translations

Runa A. Sandvik authored 13 years ago

158) 	# Convert translations to directories such as website/torbrowser/nb/.
159) 	# Again, po4a will write the file and then delete it if less than 80% has been translated
Runa A. Sandvik because functions are nice

Runa A. Sandvik authored 13 years ago

160) 	function subdir {
161) 		# The location of the english wml file
162)                 english="$wmldir/$subdir/en/$wmlfile"
Runa A. Sandvik remove last three lines of...

Runa A. Sandvik authored 14 years ago

163) 
Runa A. Sandvik because functions are nice

Runa A. Sandvik authored 13 years ago

164) 		# Convert the files
Runa A. Sandvik do not keep old translations

Runa A. Sandvik authored 13 years ago

165) 		po4a-translate -f wml -m "$english" -p "$file" -l "$wmldir/$subdir/$lang/$wmlfile" --master-charset utf-8 -L utf-8 -o customtag="$customtag" -o nodefault="$nodefault"
Runa A. Sandvik remove last three lines of...

Runa A. Sandvik authored 14 years ago

166) 
Runa A. Sandvik because functions are nice

Runa A. Sandvik authored 13 years ago

167) 		# Check to see if the file was written
Runa A. Sandvik do not keep old translations

Runa A. Sandvik authored 13 years ago

168) 		if [ -e "$wmldir/$subdir/$lang/$wmlfile" ]
Runa A. Sandvik because functions are nice

Runa A. Sandvik authored 13 years ago

169) 		then
170) 			# Remove last three lines in file
171) 			sed -i -e :a -e '$d;N;2,3ba' -e 'P;D' "$wmldir/$subdir/$lang/$wmlfile"
172) 
Runa A. Sandvik remove translator comments...

Runa A. Sandvik authored 13 years ago

173) 			# Remove lines that are translator comments
174) 			sed -i '/^<td># Translators:/ d' "$wmldir/$subdir/$lang/$wmlfile"
175) 
Runa A. Sandvik make sure arabic translatio...

Runa A. Sandvik authored 13 years ago

176) 			# If the file is an Arabic translation, include the
177) 			# right header, css, menu files and footer
Runa A. Sandvik make sure arabic translatio...

Runa A. Sandvik authored 13 years ago

178) 			if [ $lang = "ar" ]
179) 			then
Runa A. Sandvik make sure arabic translatio...

Runa A. Sandvik authored 13 years ago

180) 				# Head
181) 				orig_head=`grep '#include "head.wmi"' "$wmldir/$subdir/$lang/$wmlfile"`
182) 				temp_head=`echo $orig_head | sed s@head.wmi@ar/head.wmi@`
183) 				new_head=`echo $temp_head 'STYLESHEET="css/master-rtl.css"'`
184) 				sed -i "s@$orig_head@$new_head@" "$wmldir/$subdir/$lang/$wmlfile"
185) 
186) 				# Side (not all files include this)
187) 				orig_side=`grep '#include "side.wmi"' "$wmldir/$subdir/$lang/$wmlfile"`
188) 				if [ -n "$orig_side" ]
189) 				then
190) 					new_side=`echo '#include "ar/side.wmi"'`
191) 					sed -i "s@$orig_side@$new_side@" "$wmldir/$subdir/$lang/$wmlfile"
192) 				fi
193) 
194) 				# Info (not all files include this)
195) 				orig_info=`grep '#include "info.wmi"' "$wmldir/$subdir/$lang/$wmlfile"`
196) 				if [ -n "$orig_info" ]
197) 				then
198) 					new_info=`echo '#include "ar/info.wmi"'`
199) 					sed -i "s@$orig_info@$new_info@" "$wmldir/$subdir/$lang/$wmlfile"
200) 				fi
201) 
202) 				# Footer
203) 				echo '#include "ar/foot.wmi"' >> "$wmldir/$subdir/$lang/$wmlfile"
204) 			else
205) 				# Include the English footer
206) 				echo '#include "foot.wmi"' >> "$wmldir/$subdir/$lang/$wmlfile"
Runa A. Sandvik make sure arabic translatio...

Runa A. Sandvik authored 13 years ago

207) 			fi
Runa A. Sandvik because functions are nice

Runa A. Sandvik authored 13 years ago

208) 		fi
209) 	}
210) 
211) 	# If $onedirup is equal to $lang, that means we do not have a
212) 	# subdirectory.
213) 	if [ $onedirup == $lang ]
214) 	then
215) 		# If the current subdirectory is "zh_CN" use "zh-cn" instead
216) 		if [ $subdir = "zh_CN" ]
217) 		then
218) 			subdir="zh-cn"
219) 			nosubdir
Runa A. Sandvik if the directory is zh_CN w...

Runa A. Sandvik authored 14 years ago

220) 		fi
221) 		
Runa A. Sandvik quick fix for nb and sv

Runa A. Sandvik authored 14 years ago

222) 		# If the current directory is "nb" use "no" instead
223) 		if [ $subdir = "nb" ]
224) 		then
Runa A. Sandvik because functions are nice

Runa A. Sandvik authored 13 years ago

225) 			subdir="no"
226) 			nosubdir
Runa A. Sandvik quick fix for nb and sv

Runa A. Sandvik authored 14 years ago

227) 		fi
228) 
229) 		# If the current directory is "sv" use "se" instead
230) 		if [ $subdir = "sv" ]
231) 		then
Runa A. Sandvik because functions are nice

Runa A. Sandvik authored 13 years ago

232) 			subdir="se"
233) 			nosubdir
Runa A. Sandvik quick fix for nb and sv

Runa A. Sandvik authored 14 years ago

234) 		fi
235) 
Runa A. Sandvik if the directory is zh_CN w...

Runa A. Sandvik authored 14 years ago

236) 		# Convert everything else
Runa A. Sandvik quick fix for nb and sv

Runa A. Sandvik authored 14 years ago

237) 		if [[ $subdir != "en" && $subdir != "zh_CN" && $subdir != "nb" && $subdir != "sv" ]]
Runa A. Sandvik put the scripts in website

Runa A. Sandvik authored 14 years ago

238) 		then
Runa A. Sandvik because functions are nice

Runa A. Sandvik authored 13 years ago

239) 			nosubdir
Runa A. Sandvik put the scripts in website

Runa A. Sandvik authored 14 years ago

240) 		fi
241) 	else
Runa A. Sandvik if the directory is zh_CN w...

Runa A. Sandvik authored 14 years ago

242) 		# If the current language is "zh_CN" use "zh-cn" instead
243) 		if [ $lang = "zh_CN" ]
244) 		then
Runa A. Sandvik because functions are nice

Runa A. Sandvik authored 13 years ago

245) 			lang="zh-cn"
246) 			subdir
Runa A. Sandvik if the directory is zh_CN w...

Runa A. Sandvik authored 14 years ago

247) 		fi
Runa A. Sandvik quick fix for nb and sv

Runa A. Sandvik authored 14 years ago

248) 
249) 		# If the current language is "nb" use "no" instead
250) 		if [ $lang = "nb" ]
251) 		then
Runa A. Sandvik because functions are nice

Runa A. Sandvik authored 13 years ago

252) 			lang="no"
253) 			subdir
Runa A. Sandvik quick fix for nb and sv

Runa A. Sandvik authored 14 years ago

254) 		fi
255) 
256) 		# If the current language is "sv" use "se" instead
257) 		if [ $lang = "sv" ]
258) 		then
Runa A. Sandvik because functions are nice

Runa A. Sandvik authored 13 years ago

259) 			lang="se"
260) 			subdir
Runa A. Sandvik quick fix for nb and sv

Runa A. Sandvik authored 14 years ago

261) 		fi
Runa A. Sandvik if the directory is zh_CN w...

Runa A. Sandvik authored 14 years ago

262) 		
263) 		# Convert everything else
Runa A. Sandvik quick fix for nb and sv

Runa A. Sandvik authored 14 years ago

264) 		if [[ $lang != "en" && $lang != "zh_CN" && $lang != "nb" && $lang != "sv" ]]
Runa A. Sandvik put the scripts in website

Runa A. Sandvik authored 14 years ago

265) 		then
Runa A. Sandvik because functions are nice

Runa A. Sandvik authored 13 years ago

266) 			subdir