From df952e07384ac2b23a2139b32bf8812ac3dccc74 Mon Sep 17 00:00:00 2001 From: chriskl Date: Sun, 4 May 2003 03:56:27 +0000 Subject: [PATCH] Czech translation from Libor Vanek (libor@conet.cz) --- HISTORY | 1 + lang/Makefile | 9 +- lang/czech.php | 410 +++++++++++++++++++++++++++++++++++++++++ lang/recoded/czech.php | 410 +++++++++++++++++++++++++++++++++++++++++ libraries/lib.inc.php | 3 +- 5 files changed, 830 insertions(+), 3 deletions(-) create mode 100644 lang/czech.php create mode 100644 lang/recoded/czech.php diff --git a/HISTORY b/HISTORY index e65bf063..fbae6231 100644 --- a/HISTORY +++ b/HISTORY @@ -5,6 +5,7 @@ Version 3.0.0-dev-5 ------------------- * Cascade drop on columns and constraints +* Czech translation Version 3.0.0-dev-4 ------------------- diff --git a/lang/Makefile b/lang/Makefile index e6b9c214..75aca1af 100644 --- a/lang/Makefile +++ b/lang/Makefile @@ -6,11 +6,11 @@ # It is important to fix first and last lines of the file # using 'awk' # -# $Id: Makefile,v 1.20 2003/05/01 01:40:42 chriskl Exp $ +# $Id: Makefile,v 1.21 2003/05/04 03:56:28 chriskl Exp $ # DESTDIR=./recoded -all: polish english chinese dutch german spanish italian french russian japanese slovak turkish +all: polish english chinese dutch german spanish italian french russian japanese slovak turkish czech polish: cat polish.php | recode latin2..html | \ @@ -77,6 +77,11 @@ slovak-1250: awk '{ gsub(">",">"); gsub("<","<"); print $0}' \ > ${DESTDIR}/slovak.php +czech: + cat czech.php | recode cp1250..html | \ + awk '{ gsub(">",">"); gsub("<","<"); print $0}' \ + > ${DESTDIR}/czech.php + turkish: cat turkish.php | recode iso-8859-9..html | \ awk '{ gsub(">",">"); gsub("<","<"); print $0}' \ diff --git a/lang/czech.php b/lang/czech.php new file mode 100644 index 00000000..0f4d820d --- /dev/null +++ b/lang/czech.php @@ -0,0 +1,410 @@ + diff --git a/lang/recoded/czech.php b/lang/recoded/czech.php new file mode 100644 index 00000000..534fe86d --- /dev/null +++ b/lang/recoded/czech.php @@ -0,0 +1,410 @@ + diff --git a/libraries/lib.inc.php b/libraries/lib.inc.php index 0c8e5ebb..f936cc96 100644 --- a/libraries/lib.inc.php +++ b/libraries/lib.inc.php @@ -3,7 +3,7 @@ /** * Function library read in upon startup * - * $Id: lib.inc.php,v 1.41 2003/05/01 01:40:40 chriskl Exp $ + * $Id: lib.inc.php,v 1.42 2003/05/04 03:56:28 chriskl Exp $ */ // Set error reporting level to max @@ -35,6 +35,7 @@ $appLangFiles = array( 'chinese-tr' => '繁體中文', 'chinese-sim' => '简体中文', + 'czech' => 'Česky', 'dutch' => 'Nederlands', 'english' => 'English', 'french' => 'Français', -- 2.39.5