see lang/sync_lang.sh

This commit is contained in:
Marc Delisle
2002-06-16 10:49:47 +00:00
parent a133af314c
commit 176f206bb7
2 changed files with 0 additions and 21 deletions

View File

@@ -1,12 +0,0 @@
#!/bin/sh
#
# Shell script that synchronises all czech translations using iso-8859-2 as basic
echo -n "Creating windows-1250 ... "
iconv -f iso8859-2 -t windows-1250 czech-iso.inc.php3| sed 's/iso-8859-2/windows-1250/' > czech-win1250.inc.php3
echo done
echo -n "Creating utf-8 ... "
iconv -f iso8859-2 -t utf-8 czech-iso.inc.php3| sed -e 's/iso-8859-2/utf-8/' -e '/\$charset/a\
$allow_recoding = TRUE;' > czech-utf8.inc.php3
echo done

View File

@@ -1,9 +0,0 @@
#!/bin/sh
#
# Shell script that synchronises all english translations using iso-8859-1 as basic
echo -n "Creating utf-8 ... "
iconv -f iso8859-1 -t utf-8 english.inc.php3| sed -e 's/iso-8859-1/utf-8/' -e '/\$charset/a\
$allow_recoding = TRUE;' > english-utf8.inc.php3
echo done