phpwebapp-commits Mailing List for phpWebApp (Page 8)
Brought to you by:
dashohoxha
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(15) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(2) |
Feb
|
Mar
|
Apr
(5) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2003 |
Jan
|
Feb
(43) |
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(194) |
Sep
(60) |
Oct
(6) |
Nov
|
Dec
(16) |
2004 |
Jan
(73) |
Feb
(13) |
Mar
(5) |
Apr
|
May
(5) |
Jun
|
Jul
(183) |
Aug
|
Sep
(5) |
Oct
(30) |
Nov
|
Dec
|
2005 |
Jan
|
Feb
|
Mar
|
Apr
(9) |
May
(1) |
Jun
(35) |
Jul
(17) |
Aug
(2) |
Sep
(6) |
Oct
(19) |
Nov
(108) |
Dec
|
2006 |
Jan
(10) |
Feb
(1) |
Mar
(5) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Dashamir H. <das...@us...> - 2005-06-24 14:50:49
|
Update of /cvsroot/phpwebapp/web_app/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3358/doc Modified Files: to_do.txt Log Message: Index: to_do.txt =================================================================== RCS file: /cvsroot/phpwebapp/web_app/doc/to_do.txt,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** to_do.txt 16 Jun 2005 11:34:37 -0000 1.16 --- to_do.txt 24 Jun 2005 14:50:35 -0000 1.17 *************** *** 1,2 **** --- 1,4 ---- + * - Make i18n/l10n for the messages of the framework itself. + * - Write in DocBookWiki a programmer's guide for phpWebApp. |
From: Dashamir H. <das...@us...> - 2005-06-22 12:56:38
|
Update of /cvsroot/phpwebapp/web_app/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19477/doc Modified Files: changes.txt Log Message: - solved multiple lines problem - fixed some problems with translating JS messages Index: changes.txt =================================================================== RCS file: /cvsroot/phpwebapp/web_app/doc/changes.txt,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** changes.txt 21 Jun 2005 13:21:06 -0000 1.20 --- changes.txt 22 Jun 2005 12:56:29 -0000 1.21 *************** *** 223,226 **** --- 223,239 ---- } + Tip: Since xgettext has the C syntax in mind, for strings + in multiple lines, it gives a warning: "unterminated string + literal" and it does not get them right. To bypass this + problem, a slash (\) can be added at the end of the lines, + like in C strings. The framework will take care to remove it + automatically and the lines will be as if there was no break + between them. In case that you do want to preserve the break + between the lines, then use '\n\' at the end of the lines. + + This is just a dirty trick, the clean solution would be to + modify xgettext so that it reckognizes the syntax of php and + html strings, but it is not so easy for me to do this, and + until somebody does it, this trick solves the problem. ------------------------------------------------------------------- |
From: Dashamir H. <das...@us...> - 2005-06-22 12:56:37
|
Update of /cvsroot/phpwebapp/web_app/l10n In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19477/l10n Modified Files: wbJSL10n.php class.L10n.php Log Message: - solved multiple lines problem - fixed some problems with translating JS messages Index: wbJSL10n.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/l10n/wbJSL10n.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** wbJSL10n.php 21 Jun 2005 08:39:51 -0000 1.1 --- wbJSL10n.php 22 Jun 2005 12:56:28 -0000 1.2 *************** *** 33,40 **** $arr_msg = array(); ! for ($i=0; $i < sizeof($webPage->js_i18n_messages); $i++) { ! $msgid = $webPage->js_i18n_messages[$i]; ! $msgstr = T_($msgid); $arr_msg[] = "l10n.addMsg(\"$msgid\", \"$msgstr\");"; } --- 33,46 ---- $arr_msg = array(); ! while ( list($msgid, $msgstr) = each($webPage->js_i18n_messages) ) { ! //remove an extra slash and newline ! $msgid = str_replace("\\\n", "", $msgid); ! ! //replace newlines by '\n' (otherwise JS error will occur) ! $msgid = str_replace("\n", "\\n", $msgid); ! $msgstr = str_replace("\n", "\\n", $msgstr); ! ! //add the translation in the list of messages $arr_msg[] = "l10n.addMsg(\"$msgid\", \"$msgstr\");"; } Index: class.L10n.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/l10n/class.L10n.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** class.L10n.php 21 Jun 2005 08:39:51 -0000 1.3 --- class.L10n.php 22 Jun 2005 12:56:29 -0000 1.4 *************** *** 123,126 **** --- 123,130 ---- $str2translate = $regs[0]; $original = $regs[1]; + + //replace '\n' by newline + $original = ereg_replace("\\\\n(\\\\ *\n)", "\n\\1", $original); + $translation = T_($original); $text = str_replace($str2translate, $translation, $text); *************** *** 305,322 **** * the translation of a string, like this: $var = T_("..."); */ ! function T_($str) { if (USE_PHP_GETTEXT) { global $l10n; if (isset($l10n->php_gettext)) ! return $l10n->php_gettext->translate($str); else ! return $str; } else //use GNU gettext { ! return gettext($str); } } ?> \ No newline at end of file --- 309,331 ---- * the translation of a string, like this: $var = T_("..."); */ ! function T_($msgid) { + //remove the slash at the end of the lines (used for multiple lines) + $msgid = ereg_replace("\\\\ *\n", "", $msgid); + if (USE_PHP_GETTEXT) { global $l10n; if (isset($l10n->php_gettext)) ! $msgstr = $l10n->php_gettext->translate($msgid); else ! $msgstr = $msgid; } else //use GNU gettext { ! $msgstr = gettext($msgid); } + + return $msgstr; } ?> \ No newline at end of file |
From: Dashamir H. <das...@us...> - 2005-06-22 12:56:37
|
Update of /cvsroot/phpwebapp/web_app/parser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19477/parser Modified Files: class.WebObjectTpl.php class.WebClassTpl.php class.Render.php Log Message: - solved multiple lines problem - fixed some problems with translating JS messages Index: class.WebObjectTpl.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/class.WebObjectTpl.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** class.WebObjectTpl.php 22 Jul 2004 16:25:37 -0000 1.9 --- class.WebObjectTpl.php 22 Jun 2005 12:56:28 -0000 1.10 *************** *** 81,84 **** --- 81,142 ---- } + /** This is called before the template is rendered. */ + function before_render() + { + global $tplVars, $l10n; + + //use another translation file, if such a file exists + $l10n->set_translation_file($this->class->path, $this->id); + + //save the current scope of the var stack + $this->scope = $tplVars->getCurrentScope(); + + //add state vars to the current scope + $tplVars->addVars($this->getSVars()); + + //add some special variables which identify this object + $tplVars->addVars($this->getObjVars()); + + //add parameters to the current scope + $tplVars->addVars($this->getParams()); + + //add the class url variable {{./}} + $class_path = $this->class->path; + $class_url = WebApp::to_url($class_path); + $tplVars->addVar("./", $class_url); + + //extract translatable messages in the JS code + $this->get_translatable_messages(); + + //call the function onRender of this WebObject + $this->onRender(); + } + + /** + * Extract translatable messages (which are denoted by T_("...") ) + * from a JS file, and save them in the associative array + * $webPage->js_i18n_messages + * Called by before_render() + */ + function get_translatable_messages() + { + $fname = $this->class->path.$this->id.".js"; + if (file_exists($fname)) + { + global $webPage; + $pattern = '#T_\("([^"]+)"\)#'; //match patterns like this: T_("....") + $js_code = file_get_contents($fname); + preg_match_all($pattern, $js_code, $matches); + for ($i=0; $i < sizeof($matches[1]); $i++) + { + $msgid = $matches[1][$i]; + $pattern = "\\\\n(\\\\ *\n)"; //replace '\n' by newline + $msgid = ereg_replace($pattern, "\n\\1", $msgid); + $msgstr = T_($msgid); + $webPage->js_i18n_messages[$msgid] = $msgstr; + } + } + } + /** * This function is called by beforeParse(). Index: class.WebClassTpl.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/class.WebClassTpl.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** class.WebClassTpl.php 21 Jun 2005 08:39:51 -0000 1.12 --- class.WebClassTpl.php 22 Jun 2005 12:56:28 -0000 1.13 *************** *** 127,137 **** $include_js = " <script type=\"text/javascript\" language=\"javascript\" src=\"$fname\"></script>\n"; $webPage->append_to_head($include_js); - - //extract translatable messages in the JS code - $pattern = '#T_\("([^"]+)"\)#'; //match patterns like this: T_("....") - $js_code = file_get_contents($fname); - preg_match_all($pattern, $js_code, $matches); - $webPage->js_i18n_messages = - array_merge($webPage->js_i18n_messages, $matches[1]); } } --- 127,130 ---- Index: class.Render.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/class.Render.php,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** class.Render.php 13 Jun 2005 14:24:17 -0000 1.23 --- class.Render.php 22 Jun 2005 12:56:28 -0000 1.24 *************** *** 318,350 **** } ! //use another translation file, if such a file exists ! global $l10n; $l10n->pushState(); ! $l10n->set_translation_file($wobj_tpl->class->path, $wobj_tpl->id); ! ! //create a new variable scope ! global $tplVars; ! $tplVars->pushScope(); ! ! //save the current scope of the var stack ! $wobj_tpl->scope = $tplVars->getCurrentScope(); ! ! //add state vars to the current scope ! $tplVars->addVars($wobj_tpl->getSVars()); ! ! //add some special variables which identify this object ! $tplVars->addVars($wobj_tpl->getObjVars()); ! ! //add parameters to the current scope ! $tplVars->addVars($wobj_tpl->getParams()); ! ! //add the class url variable {{./}} ! $class_path = $wobj_tpl->class->path; ! ! $class_url = WebApp::to_url($class_path); ! $tplVars->addVar("./", $class_url); ! //call the function onRender of this WebObject ! $wobj_tpl->onRender(); $this->render_tpl($wobj_tpl); //render it to HTML --- 318,326 ---- } ! global $tplVars, $l10n; $l10n->pushState(); ! $tplVars->pushScope(); //create a new variable scope ! $wobj_tpl->before_render(); $this->render_tpl($wobj_tpl); //render it to HTML |
From: Dashamir H. <das...@us...> - 2005-06-21 18:57:11
|
Update of /cvsroot/phpwebapp/web_app/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6738/doc Modified Files: changes.txt Log Message: Index: changes.txt =================================================================== RCS file: /cvsroot/phpwebapp/web_app/doc/changes.txt,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** changes.txt 13 Jun 2005 14:25:47 -0000 1.19 --- changes.txt 21 Jun 2005 13:21:06 -0000 1.20 *************** *** 199,203 **** --- 199,284 ---- 'T_' is the name of the function whose strings will be extracted. + Tip: In order to translating attribute values, use a {{variable}} + inside the attribute value, and then in the PHP code that + adds the variable, get the appropriate translation. E.g. + + <input type="button" value="{{Search>>}}" /> (in HTML) + + WebApp::addVar('Search>>', T_("Search>>")); (in PHP) + + Tip: Some templates contain text, not just messages, which can + also be mixed with HTML tags (see e.g. + 'templates/search/help.html' in this case it is difficult + to translate it using translation messages. The best way is + to use a separate template for each language, like + 'help_en_US.html', 'help_sq_AL.html', etc. + When the template is included, something like this can be + used: + <include src="{{./}}help_{{lng}}.html" /> + where {{lng}} can be defined in the php code like this: + function onParse() + { + global $l10n; + WebApp::addVar('lng', $l10n->lng); + } + + ------------------------------------------------------------------- + + * Now it is possible to use translatable messages in the JS code + (e.g. in the messages that are displayed by alert()). Same as + in PHP and HTML, strings are translated by the function: + T_("...."). + + Attention: double quotes must be used ("), otherwise + xgettext will not be able to extract them. + + In order to have variables inside a message, you have to make + some tricks. E.g., to make translatable this message: + --code + var new_node_id = prompt("Rename node '" + node_id + "' to:"); + ---- + It can be written like this: + --code + var msg = T_("Rename node 'v_node_id' to:").replace(/v_node_id/, node_id); + //var msg = T_("Rename node 'v_node_id' to:"); + //msg = msg.replace(/v_node_id/, node_id); + var new_node_id = prompt(msg); + ---- + This allows the translator to change the position of the variable, + if needed. + + Note: How it Works + The JS function T_(msgid), which is included in the page by + the framework, returns the translation msgstr of the given msgid. + This translation is retrived from a list of translated messages, + which is contained by the JS object l10n of class L10n, which is + included in the page by the framework. If you view the source of + the page, you will see near the end something like this: + --code + <script type="text/javascript" language="javascript" + src="web_app/l10n/class.L10n.js"></script> + <script type="text/javascript" language="javascript"> + //<![CDATA[ + l10n = new L10n(); + l10n.addMsg("You are deleting this node and all the subnodes.", + "You are deleting this node and all the subnodes."); + l10n.addMsg("ID cannot be empty.", "ID cannot be empty."); + l10n.addMsg("Title cannot be empty.", "Title cannot be empty."); + l10n.addMsg("Please give an ID.", "Please give an ID."); + l10n.addMsg("Please give a title.", "Please give a title."); + l10n.addMsg("Rename 'v_item' to:", "Rename 'v_item' to:"); + l10n.addMsg("Your are deleting 'v_item'!", + "Your are deleting 'v_item'!"); + l10n.addMsg("Uploading:", "Uploading:"); + l10n.addMsg("Please wait...", "Please wait..."); + //]]> + </script> + ---- + This is generated automatically by the framework. For each JS file + that it includes in the <head> of the page, it also scans it for + translatable messages, gets their translation, and includes lines + l10n.addMsg(msgid, msgstr), as above. + ------------------------------------------------------------------- ------------------------------------------------------------------- |
From: Dashamir H. <das...@us...> - 2005-06-21 08:47:53
|
Update of /cvsroot/phpwebapp/web_app/l10n/app In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26967/l10n/app Added Files: xgettext.sh msgmerge.sh msginit.sh msgfmt.sh get_app_name.sh README-FIRST README Log Message: these files are usually placed in the directory 'l10n/' of the application --- NEW FILE: xgettext.sh --- #!/bin/bash ### go to this dir cd $(dirname $0) ### get the translatable strings of search, admin and docbook ### from HTML and PHP files module_list="search admin docbook" for module in $module_list do dir=../templates/$module touch $dir/l10n/$module.po find $dir -name '*.php' -o -name '*.js' -o -name '*.html' \ | xargs xgettext -C --keyword=T_ --join-existing \ --output-dir=$dir/l10n/ --output=$module.po done ### get the translatable strings for the rest of the application app_name=$(./get_app_name.sh) touch $app_name.po find ../templates/ -path '../templates/search' -prune \ -o -path '../templates/admin' -prune \ -o -path '../templates/docbook' -prune \ -o -name '*.php' -print \ -o -name '*.js' -print \ -o -name '*.html' -print \ | xargs xgettext -C --keyword=T_ --join-existing --output=$app_name.po --- NEW FILE: msgmerge.sh --- #!/bin/bash ### update old *.po files with new messages extracted by xgettext.sh ### go to this directory cd $(dirname $0) if [ "$1" = "" ] then echo "Usage: $0 ll_CC" echo "where ll_CC is the language code, like en_US or sq_AL" exit 1 fi lng=$1 ### convert the *.po file of the application app_name=$(./get_app_name.sh) dir=$lng/LC_MESSAGES msgmerge --update $dir/$app_name.po $app_name.po ### convert the *.po files of search, admin and docbook module_list="search admin docbook" for module in $module_list do dir=../templates/$module/l10n msgmerge --update $dir/$lng/LC_MESSAGES/$module.po $dir/$module.po done --- NEW FILE: msginit.sh --- #!/bin/bash ### create initial translation files for a language ### go to this directory cd $(dirname $0) if [ "$1" = "" ] then echo "Usage: $0 ll_CC" echo "where ll_CC is the language code, like en_US or sq_AL" exit 1 fi lng=$1 ### create an initial *.po file for the application app_name=$(./get_app_name.sh) msginit --input=$app_name.po --locale=$lng --no-translator \ --output-file=$lng/LC_MESSAGES/$app_name.po ### create initial *.po files for search, admin and docbook module_list="search admin docbook" for module in $module_list do dir=../templates/$module/l10n mkdir -p $dir/$lng/LC_MESSAGES/ msginit --input=$dir/$module.po --locale=$lng --no-translator \ --output-file=$dir/$lng/LC_MESSAGES/$module.po done --- NEW FILE: msgfmt.sh --- #!/bin/bash ### convert translation files (*.po) to binary format (*.mo) ### go to this directory cd $(dirname $0) if [ "$1" = "" ] then echo "Usage: $0 ll_CC" echo "where ll_CC is the language code, like en_US or sq_AL" exit 1 fi lng=$1 ### convert the *.po file of the application app_name=$(./get_app_name.sh) dir=$lng/LC_MESSAGES msgfmt --output-file=$dir/$app_name.mo $dir/$app_name.po ### convert the *.po files of search, admin and docbook module_list="search admin docbook" for module in $module_list do dir=../templates/$module/l10n/$lng/LC_MESSAGES/ msgfmt --output-file=$dir/$module.mo $dir/$module.po done --- NEW FILE: get_app_name.sh --- #!/bin/bash ### get and output the name of the application cd $(dirname $0) l10n_dir=$(pwd) app_dir=$(dirname $l10n_dir) app_name=$(basename $app_dir) echo $app_name --- NEW FILE: README-FIRST --- These files should be copied in the folder 'l10n/' of the application, and then they can be modified according to the application. --- NEW FILE: README --- To translate the messages for a language, first initialize the translation files: --scr bash$ ./xgettext.sh bash$ ./msginit.sh ll_CC ---- ll_CC is the language and country code, like 'en_US' or 'sq_AL'. Then, translate the messages in the translation files: * ./ll_CC/LC_MESSAGES/book.po * ../templates/search/ll_CC/LC_MESSAGES/search.po * ../templates/admin/ll_CC/LC_MESSAGES/admin.po * ../templates/docbook/ll_CC/LC_MESSAGES/docbook.po Finally, convert the translation files into binary format (*.mo): --scr bash$ ./msgfmt.sh ll_CC ---- To update the translation files (e.g. after a new release is out and the message strings may have changed), do: --scr bash$ ./xgettext.sh bash$ ./msgmerge.sh ll_CC ---- Then translate any new entries in the translation files, and then convert again to binary format: `./msgfmt.sh ll_CC`. Other gettext tools can be used as well, if needed. For more information about them see `info gettext`. |
From: Dashamir H. <das...@us...> - 2005-06-21 08:45:24
|
Update of /cvsroot/phpwebapp/web_app/l10n/app In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25987/l10n/app Log Message: Directory /cvsroot/phpwebapp/web_app/l10n/app added to the repository |
From: Dashamir H. <das...@us...> - 2005-06-21 08:40:00
|
Update of /cvsroot/phpwebapp/web_app/append In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22457/append Modified Files: append.html Log Message: added translation (i18n/l10n) support for messages in the JS code Index: append.html =================================================================== RCS file: /cvsroot/phpwebapp/web_app/append/append.html,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** append.html 8 Oct 2004 10:01:56 -0000 1.7 --- append.html 21 Jun 2005 08:39:51 -0000 1.8 *************** *** 13,16 **** --- 13,19 ---- </div> + <!--# include JS localization (translation) messages #--> + <include src="{{L10N_PATH}}wbJSL10n.html" /> + <!--# include session variables #--> <include src="{{SESSION_PATH}}wbSession.html" /> |
From: Dashamir H. <das...@us...> - 2005-06-21 08:40:00
|
Update of /cvsroot/phpwebapp/web_app/l10n In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22457/l10n Modified Files: class.L10n.php Added Files: wbJSL10n.php wbJSL10n.html class.L10n.js Log Message: added translation (i18n/l10n) support for messages in the JS code --- NEW FILE: wbJSL10n.php --- <?php /* This file is part of phpWebApp, which is a framework for building web application based on relational databases. Copyright 2001,2002,2003,2004 Dashamir Hoxha, das...@us... phpWebApp is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. phpWebApp is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with phpWebApp; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /** * Includes the JS L10n messages in the HTML page. * @package l10n */ class wbJSL10n extends WebObject { function onRender() { global $webPage; $arr_msg = array(); for ($i=0; $i < sizeof($webPage->js_i18n_messages); $i++) { $msgid = $webPage->js_i18n_messages[$i]; $msgstr = T_($msgid); $arr_msg[] = "l10n.addMsg(\"$msgid\", \"$msgstr\");"; } //add the template variable {{JS_L10N_MESSAGES}} WebApp::addVar("JS_L10N_MESSAGES", implode($arr_msg, "\n ")); } } ?> --- NEW FILE: wbJSL10n.html --- <webbox id="wbJSL10n"> <!--# insert the JS l10n messages #--> <script type="text/javascript" language="javascript" src="{{./}}class.L10n.js"></script> <script type="text/javascript" language="javascript"> //<![CDATA[ l10n = new L10n(); {{JS_L10N_MESSAGES}} //]]> </script> </webbox> --- NEW FILE: class.L10n.js --- //-*- mode: C; -*-//tells emacs to use mode C for this file /* Copyright 2001,2002,2003 Dashamir Hoxha, das...@us... This file is part of phpWebApp. phpWebApp is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. phpWebApp is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with phpWebApp; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /** * L10n class keeps a list of translatable messages and their * translation. It helps to localize messages in the JS code. */ function L10n() { this.messages = new Array(); this.addMsg = l10n_addMsg; this.gettext = l10n_gettext; } /** Add a new message and its translation in the list. */ function l10n_addMsg(msgid, msgstr) { var msg = { id:msgid, str:msgstr }; this.messages.push(msg); } /** Return the translation of a message. */ function l10n_gettext(msgid) { var i; for (i=0; i < this.messages.length; i++) if (this.messages[i].id == msgid) { //found, return the translation return this.messages[i].str; } //not found, return the msgid itself return msgid; } function T_(msgid) { return l10n.gettext(msgid); } Index: class.L10n.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/l10n/class.L10n.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** class.L10n.php 16 Jun 2005 11:34:37 -0000 1.2 --- class.L10n.php 21 Jun 2005 08:39:51 -0000 1.3 *************** *** 55,58 **** --- 55,60 ---- * the translation file (*.mo) of the containing template or webbox * (from which this template/webbox is included directly or indirectly). + * + * @package l10n */ class L10n |
From: Dashamir H. <das...@us...> - 2005-06-21 08:39:59
|
Update of /cvsroot/phpwebapp/web_app/parser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22457/parser Modified Files: class.WebPage.php class.WebClassTpl.php Log Message: added translation (i18n/l10n) support for messages in the JS code Index: class.WebPage.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/class.WebPage.php,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** class.WebPage.php 11 Oct 2004 09:50:52 -0000 1.15 --- class.WebPage.php 21 Jun 2005 08:39:51 -0000 1.16 *************** *** 46,49 **** --- 46,55 ---- /** + * Keeps a list of translatable messages that are used + * in the JavaScript code. + */ + var $js_i18n_messages; + + /** * Keeps a list of messages that are displayed with alert() * to the user after the page is loaded. *************** *** 63,69 **** --- 69,77 ---- * Keeps a list of debug messages that are displayed * after the page is rendered. + * @see WebApp::debug_msg() */ var $dbg_messages; + /** used to measure the execution time of several parts of the application */ var $timer; *************** *** 76,81 **** $this->rs_collection = array(); $this->messages = array(); ! $this->popup_windows = array(); $this->dbg_messages = array(); --- 84,90 ---- $this->rs_collection = array(); + $this->js_i18n_messages = array(); $this->messages = array(); ! $this->popup_windows = array(); $this->dbg_messages = array(); Index: class.WebClassTpl.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/class.WebClassTpl.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** class.WebClassTpl.php 22 Jul 2004 16:25:37 -0000 1.11 --- class.WebClassTpl.php 21 Jun 2005 08:39:51 -0000 1.12 *************** *** 122,128 **** --- 122,137 ---- { global $webPage; + + //include the JS file in the <head> of the page $fname = WebApp::to_url($fname); $include_js = " <script type=\"text/javascript\" language=\"javascript\" src=\"$fname\"></script>\n"; $webPage->append_to_head($include_js); + + //extract translatable messages in the JS code + $pattern = '#T_\("([^"]+)"\)#'; //match patterns like this: T_("....") + $js_code = file_get_contents($fname); + preg_match_all($pattern, $js_code, $matches); + $webPage->js_i18n_messages = + array_merge($webPage->js_i18n_messages, $matches[1]); } } |
From: Dashamir H. <das...@us...> - 2005-06-16 11:34:46
|
Update of /cvsroot/phpwebapp/web_app/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2455/doc Modified Files: to_do.txt Log Message: Index: to_do.txt =================================================================== RCS file: /cvsroot/phpwebapp/web_app/doc/to_do.txt,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** to_do.txt 13 Jun 2005 06:55:21 -0000 1.15 --- to_do.txt 16 Jun 2005 11:34:37 -0000 1.16 *************** *** 1,4 **** - * - Add i18n support to the framework - * - Write in DocBookWiki a programmer's guide for phpWebApp. --- 1,2 ---- |
From: Dashamir H. <das...@us...> - 2005-06-16 11:34:46
|
Update of /cvsroot/phpwebapp/web_app In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2455 Modified Files: WebApp.php Log Message: Index: WebApp.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/WebApp.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** WebApp.php 13 Jun 2005 06:55:21 -0000 1.7 --- WebApp.php 16 Jun 2005 11:34:37 -0000 1.8 *************** *** 47,52 **** $request = new Request; $tplVars = new VarStack; - $l10n = new L10n; $webPage = new WebPage; $parser = new Parser; $render = new Render; --- 47,52 ---- $request = new Request; $tplVars = new VarStack; $webPage = new WebPage; + $l10n = new L10n; $parser = new Parser; $render = new Render; |
From: Dashamir H. <das...@us...> - 2005-06-16 11:34:46
|
Update of /cvsroot/phpwebapp/web_app/l10n In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2455/l10n Modified Files: class.L10n.php Log Message: Index: class.L10n.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/l10n/class.L10n.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** class.L10n.php 13 Jun 2005 06:55:20 -0000 1.1 --- class.L10n.php 16 Jun 2005 11:34:37 -0000 1.2 *************** *** 174,178 **** textdomain($domain); } ! } --- 174,178 ---- textdomain($domain); } ! //WebApp::debug_msg('==== '.$this->printState()); } *************** *** 194,197 **** --- 194,203 ---- ); array_push($this->stack, $item); + //WebApp::debug_msg('>>> '.$this->printState()); + } + + function printState() + { + return $this->path.' '.$this->domain.' '.$this->lng.' '.$this->codeset; } *************** *** 219,222 **** --- 225,229 ---- $this->load_translation_file(); } + //WebApp::debug_msg('<<< '.$this->printState()); } *************** *** 241,247 **** //a translation file is found, save the parameters and load it ! $this->path = $l10n; ! $this->domain = $id; ! $this->load_translation_file(); } --- 248,257 ---- //a translation file is found, save the parameters and load it ! if ($l10n != $this->path or $id != $this->domain) ! { ! $this->path = $l10n; ! $this->domain = $id; ! $this->load_translation_file(); ! } } |
From: Dashamir H. <das...@us...> - 2005-06-13 14:25:56
|
Update of /cvsroot/phpwebapp/web_app/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19789 Modified Files: changes.txt Log Message: *** empty log message *** Index: changes.txt =================================================================== RCS file: /cvsroot/phpwebapp/web_app/doc/changes.txt,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** changes.txt 13 Jun 2005 12:21:03 -0000 1.18 --- changes.txt 13 Jun 2005 14:25:47 -0000 1.19 *************** *** 195,199 **** then the strings are translated, then *.po files are converted to *.mo files using `msgfmt`, then they are installed (placed at ! the propper location in the application). ------------------------------------------------------------------- --- 195,201 ---- then the strings are translated, then *.po files are converted to *.mo files using `msgfmt`, then they are installed (placed at ! the propper location in the application). The xgettext program ! should be called with the '-kT_' parameter, which means that ! 'T_' is the name of the function whose strings will be extracted. ------------------------------------------------------------------- |
From: Dashamir H. <das...@us...> - 2005-06-13 14:24:26
|
Update of /cvsroot/phpwebapp/web_app/parser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19183 Modified Files: class.Render.php Log Message: translatable strings can contain variables inside, so translation should be done before replacing variables Index: class.Render.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/class.Render.php,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** class.Render.php 13 Jun 2005 06:55:20 -0000 1.22 --- class.Render.php 13 Jun 2005 14:24:17 -0000 1.23 *************** *** 53,63 **** function render_string($str, $indent =true) { - //replace all {{tpl_vars}} - $str = WebApp::replaceVars($str); - //translate all T_("xyz") strings global $l10n; if (ereg('T_\\("[^"]*"\\)', $str)) $str = $l10n->translate($str); //extra replacements $str = $this->other_replaces($str); --- 53,63 ---- function render_string($str, $indent =true) { //translate all T_("xyz") strings global $l10n; if (ereg('T_\\("[^"]*"\\)', $str)) $str = $l10n->translate($str); + //replace all {{tpl_vars}} + $str = WebApp::replaceVars($str); + //extra replacements $str = $this->other_replaces($str); |
From: Dashamir H. <das...@us...> - 2005-06-13 12:21:14
|
Update of /cvsroot/phpwebapp/web_app/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11821 Modified Files: changes.txt Log Message: *** empty log message *** Index: changes.txt =================================================================== RCS file: /cvsroot/phpwebapp/web_app/doc/changes.txt,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** changes.txt 13 Jun 2005 06:55:21 -0000 1.17 --- changes.txt 13 Jun 2005 12:21:03 -0000 1.18 *************** *** 183,186 **** --- 183,199 ---- application and its developer to decide about it. + In order to make a string translatable, it should be placed + as an argument of the T_() function and should be surrounded + by double quotes, like this: T_("Hello!") . This can be used + both in the PHP code and in the HTML templates (but not in + JS files, because they are not processed by the framework). + + Then, the rest is the same as described by the gettext documentation + (see `info gettext`): the translatable strings are extracted + automatically from the PHP code and HTML templates using the + xgettext program (see `info xgettext`), creating *.po files, + then the strings are translated, then *.po files are converted + to *.mo files using `msgfmt`, then they are installed (placed at + the propper location in the application). ------------------------------------------------------------------- |
From: Dashamir H. <das...@us...> - 2005-06-13 06:55:46
|
Update of /cvsroot/phpwebapp/web_app/parser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8209/parser Modified Files: class.Render.php Log Message: added translation (i18n/l10n) support Index: class.Render.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/parser/class.Render.php,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** class.Render.php 9 Jun 2005 13:12:53 -0000 1.21 --- class.Render.php 13 Jun 2005 06:55:20 -0000 1.22 *************** *** 56,59 **** --- 56,63 ---- $str = WebApp::replaceVars($str); + //translate all T_("xyz") strings + global $l10n; + if (ereg('T_\\("[^"]*"\\)', $str)) $str = $l10n->translate($str); + //extra replacements $str = $this->other_replaces($str); *************** *** 262,265 **** --- 266,278 ---- } + //use another translation file, if such a file exists + global $l10n; + $l10n->pushState(); + $dir = dirname($file_tpl->filename); + $filename = basename($file_tpl->filename); + $id = ereg_replace('\\..*$', '', $filename); + $l10n->set_translation_file($dir, $id); + + //create a new variable scope global $tplVars; $tplVars->pushScope(); *************** *** 275,278 **** --- 288,292 ---- $tplVars->popScope(); + $l10n->popState(); if (DEBUG_INCLUDES) $this->output("</div>\n"); *************** *** 280,284 **** /** ! * Renders the given $main_tpl by rendering its head and its body. */ function render_MainTpl($main_tpl) --- 294,298 ---- /** ! * Renders the given $main_tpl. */ function render_MainTpl($main_tpl) *************** *** 286,294 **** //the body element was not closed in order to append easily other things $main_tpl->body->contents .= '</body>'; - /* - global $webPage; - print $webPage->template_list(); - exit; - */ $this->render_FileTpl($main_tpl); } --- 300,303 ---- *************** *** 309,312 **** --- 318,327 ---- } + //use another translation file, if such a file exists + global $l10n; + $l10n->pushState(); + $l10n->set_translation_file($wobj_tpl->class->path, $wobj_tpl->id); + + //create a new variable scope global $tplVars; $tplVars->pushScope(); *************** *** 336,339 **** --- 351,355 ---- $tplVars->popScope(); + $l10n->popState(); if (DEBUG_WEBOBJECTS) $this->output("</div>\n"); |
From: Dashamir H. <das...@us...> - 2005-06-13 06:55:37
|
Update of /cvsroot/phpwebapp/web_app/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8209/doc Modified Files: to_do.txt changes.txt ToDo.txt Log Message: added translation (i18n/l10n) support Index: to_do.txt =================================================================== RCS file: /cvsroot/phpwebapp/web_app/doc/to_do.txt,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** to_do.txt 12 Oct 2004 10:01:46 -0000 1.14 --- to_do.txt 13 Jun 2005 06:55:21 -0000 1.15 *************** *** 1,2 **** --- 1,9 ---- + * - Add i18n support to the framework + + * - Write in DocBookWiki a programmer's guide for phpWebApp. + + * - Use the webbox docbook in the documentation of phpWebApp. + + * - Write more tutorials for phpWebApp. * - Add this functionality to the framework: any webobject can Index: changes.txt =================================================================== RCS file: /cvsroot/phpwebapp/web_app/doc/changes.txt,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** changes.txt 9 Jun 2005 13:21:34 -0000 1.16 --- changes.txt 13 Jun 2005 06:55:21 -0000 1.17 *************** *** 73,76 **** --- 73,187 ---- </unindented> ------------------------------------------------------------------- + + * Added support for multiple languages to the framework. + translation / internationalization (i18n) / localization (l10n) + + It can use any one of the packages: + - PHP-gettext (http://savannah.nongnu.org/projects/php-gettext/) + - GNU gettext (http://www.gnu.org/software/gettext/gettext.html, + http://www.php.net/gettext) + since both of them have some advantages or disadvantages. + + The disadvantages of GNU gettext are that it does not work if gettext + package is not installed, or if the system is not configured for + using translations of a language. Also, the gettext functions in the php + seem not to be reliable, sometimes they get the translation from one + place, sometimes from another (maybe this is a caching problem?). + In general, it is a headache to make it work. + + The disadvantages of PHP-gettext are that it may not be as fast + as GNU gettext, and there may be some gettext functionality that is + not supported yet (not implemented yet). + + The application programer can choose the one that suits him best. + The choice is made at 'config/const.Options.php': + + /** if true, then use the php-gettext instead of GNU gettext */ + define('USE_PHP_GETTEXT', true); + + Other translation constants that are defined at the options file + are LNG and CODESET: + + /** + * The constants LNG and CODESET set a default language and codeset for + * the application. They are used for the localization (translation) + * of the messages. They can be changed by calling: + * $l10n->set_lng($lng, $codeset) + * where $l10n is a global variable and $codeset is optional. + * LNG can be something like 'en_US' or 'en' or UNDEFINED. + * CODESET can be UNDEFINED, 'iso-latin-1', etc. + */ + define('LNG', 'sq_AL'); + define('CODESET', 'iso-latin-1'); + + LNG sets a default language for the application, but it can also be + changed dynamically, calling $l10n->set_lng($lng). With GNU gettext, + LNG can also be UNDEFINED, and in this case the system default will + be used. However, with PHP-gettext it should have a value (or a + value should be set with $l10n->set_lng()). + CODESET is used in GNU gettext, but it is not needed by PHP-gettext, + so it can also be UNDEFINED. See the documentation of gettext + (`info gettext`) for more information about when and why it is needed. + + The framework allows to have separate translation (localization) files + foreach template that is included and for each webobject. If the + directory that contains the template (or webbox) contains also + a subdirectory named 'l10n', then the framework will look inside + this directory for the file that contains the translations of the + messages of the template/webbox. It will look for the file + l10n/lng/LC_MESSAGES/tplname.mo (or l10n/lng/LC_MESSAGES/webboxid.mo) + which contains the translation messages of the template (or webbox). + + If the subdirectory 'l10n/' does not exist, the framework will + look for the file tplname.mo (or webboxid.mo) in the first 'l10n/' + in the parent directory or in the ancestors. If even the application + directory does not contain a 'l10n/' subdir, then the last place + to look for will be the system default (usually /usr/share/locale/). + + About the language code, if it is e.g. 'en_US', then it will search + first the folder 'en_US/' and then the folder 'en/'. + + If the file tplname.mo (or webboxid.mo) is not found at all in + the searched directories, then the last translation (*.mo) file + that was found will be used for translating messages. This is usually + the translation (*.mo) file of the containing template or webbox + (from which this template/webbox is included directly or indirectly). + + This way of finding the translation files allows for modularity, + because each webbox/template can have its own translation files, + so using them in other applications can be done by just copying them + there. But it is also flexible and does not enforce unnecessary + or unneeded modularity, so that for example the whole application + can have a single translation file, or sub-webbox-es can use the + translation files of the main webbox. + + In general, translation files (*.mo) can be organized like this: + + - A single translation file 'app_name.mo' can be used for all the + application. It can be placed in /usr/share/locale/lng/LC_MESSAGES/ + or in app_path/l10n/lng/LC_MESSAGES/ + + - Generic webboxes, which are used in more that one application, + can have their own translation file 'webbox_id.mo' (besides + the application file 'app_name.mo'), which is placed in the + same directory as the application file (see above). + + - Each important webbox can have a subdirectory 'l10n/', + in which is placed the translation file of the webbox, + in /path/to/webbox/l10n/lng/LC_MESSAGES/webbox.mo . + This file can contain the translations of all the sub-webbox-es + and sub-templates as well (the ones that are included from this + webbox), or they (their translations) can be in separate + files in the same directory, which are named according to + the template name or the webbox id. + + - Each webbox can have its own 'l10n/' directory, which contains + its own translation files. This is the most modular aproach + but it may not be always needed. + + Other combinations are possible as well, so it is up to the + application and its developer to decide about it. + + ------------------------------------------------------------------- ------------------------------------------------------------------- Index: ToDo.txt =================================================================== RCS file: /cvsroot/phpwebapp/web_app/doc/ToDo.txt,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** ToDo.txt 12 Oct 2004 10:01:47 -0000 1.9 --- ToDo.txt 13 Jun 2005 06:55:21 -0000 1.10 *************** *** 61,86 **** multiple languages. ------------------------------------------------------------- - * - Add i18n support to the framework - - The GNU system has i18n support (gettext) and PHP has an API for - it, however something does not work very well for web - applications, so I think that the framework cannot use it. We can - build, however, something similar to it. - - The messages that have to be translated by the framework can be - denoted like this: {{i)Hello World!}}, or like this: <i18n>Hello - World!<i18n>. Then a tool similar to xgettext can be used to - extract all the messages from the templates. Then we can either - continue in the same way that gettext does, or we can create a - message file for each webbox. - - In the second case we will have to create the files - 'boxid_fr.msg', 'boxid_de.msg' etc. for each webbox and for each - language. They can either be stored in the same folder as the - webbox, or in the subfolder 'langs' in the same folder, or in the - folder 'messages' where are stored all the message files of the - application, etc. - - ------------------------------------------------------------- * - Build a tool for the web (graphical) designer so that he can preview the templates. (The "browse.php" does this). --- 61,64 ---- |
From: Dashamir H. <das...@us...> - 2005-06-13 06:55:35
|
Update of /cvsroot/phpwebapp/web_app/l10n/php-gettext In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8209/l10n/php-gettext Added Files: streams.php gettext.php README Makefile ChangeLog COPYING AUTHORS Log Message: added translation (i18n/l10n) support --- NEW FILE: streams.php --- <?php /* Copyright (c) 2003, 2005 Danilo Segan <da...@kv...>. This file is part of PHP-gettext. PHP-gettext is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. PHP-gettext is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with PHP-gettext; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ // Simple class to wrap file streams, string streams, etc. // seek is essential, and it should be byte stream class StreamReader { // should return a string [FIXME: perhaps return array of bytes?] function read($bytes) { return false; } // should return new position function seekto($position) { return false; } // returns current position function currentpos() { return false; } // returns length of entire stream (limit for seekto()s) function length() { return false; } } class StringReader { var $_pos; var $_str; function StringReader($str='') { $this->_str = $str; $this->_pos = 0; } function read($bytes) { $data = substr($this->_str, $this->_pos, $bytes); $this->_pos += $bytes; if (strlen($this->_str)<$this->_pos) $this->_pos = strlen($this->_str); return $data; } function seekto($pos) { $this->_pos = $pos; if (strlen($this->_str)<$this->_pos) $this->_pos = strlen($this->_str); return $this->_pos; } function currentpos() { return $this->_pos; } function length() { return strlen($this->_str); } } class FileReader { var $_pos; var $_fd; var $_length; function FileReader($filename) { if (file_exists($filename)) { $this->_length=filesize($filename); $this->_pos = 0; $this->_fd = fopen($filename,'rb'); if (!$this->_fd) { $this->error = 3; // Cannot read file, probably permissions return false; } } else { $this->error = 2; // File doesn't exist return false; } } function read($bytes) { if ($bytes) { fseek($this->_fd, $this->_pos); $data = fread($this->_fd, $bytes); $this->_pos = ftell($this->_fd); return $data; } else return ''; } function seekto($pos) { fseek($this->_fd, $pos); $this->_pos = ftell($this->_fd); return $this->_pos; } function currentpos() { return $this->_pos; } function length() { return $this->_length; } function close() { fclose($this->_fd); } } // Preloads entire file in memory first, then creates a StringReader // over it (it assumes knowledge of StringReader internals) class CachedFileReader extends StringReader { function CachedFileReader($filename) { if (file_exists($filename)) { $length=filesize($filename); $fd = fopen($filename,'rb'); if (!$fd) { $this->error = 3; // Cannot read file, probably permissions return false; } $this->_str = fread($fd, $length); fclose($fd); } else { $this->error = 2; // File doesn't exist return false; } } } ?> --- NEW FILE: gettext.php --- <?php /* Copyright (c) 2003 Danilo Segan <da...@kv...>. Copyright (c) 2005 Nico Kaiser <ni...@si...> This file is part of PHP-gettext. PHP-gettext is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. PHP-gettext is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with PHP-gettext; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /** * Provides a simple gettext replacement that works independently from * the system's gettext abilities. * It can read MO files and use them for translating strings. * The files are passed to gettext_reader as a Stream (see streams.php) * * This version has the ability to cache all strings and translations to * speed up the string lookup. * While the cache is enabled by default, it can be switched off with the * second parameter in the constructor (e.g. whenusing very large MO files * that you don't want to keep in memory) */ class gettext_reader { //public: var $error = 0; // public variable that holds error code (0 if no error) //private: var $BYTEORDER = 0; // 0: low endian, 1: big endian var $STREAM = NULL; var $short_circuit = false; var $enable_cache = false; var $originals = NULL; // offset of original table var $translations = NULL; // offset of translation table var $pluralheader = NULL; // cache header field for plural forms var $total = 0; // total string count var $table_originals = NULL; // table for original strings (offsets) var $table_translations = NULL; // table for translated strings (offsets) var $cache_translations = NULL; // original -> translation mapping /* Methods */ /** * Reads a 32bit Integer from the Stream * * @access private * @return Integer from the Stream */ function readint() { if ($this->BYTEORDER == 0) { // low endian return array_shift(unpack('V', $this->STREAM->read(4))); } else { // big endian return array_shift(unpack('N', $this->STREAM->read(4))); } } /** * Reads an array of Integers from the Stream * * @param int count How many elements should be read * @return Array of Integers */ function readintarray($count) { if ($this->BYTEORDER == 0) { // low endian return unpack('V'.$count, $this->STREAM->read(4 * $count)); } else { // big endian return unpack('N'.$count, $this->STREAM->read(4 * $count)); } } /** * Constructor * * @param object Reader the StreamReader object * @param boolean enable_cache Enable or disable caching of strings (default on) */ function gettext_reader($Reader, $enable_cache = true) { // If there isn't a StreamReader, turn on short circuit mode. if (! $Reader) { $this->short_circuit = true; return; } // Caching can be turned off $this->enable_cache = $enable_cache; // $MAGIC1 = (int)0x950412de; //bug in PHP 5 $MAGIC1 = (int) - 1794895138; // $MAGIC2 = (int)0xde120495; //bug $MAGIC2 = (int) - 569244523; $this->STREAM = $Reader; $magic = $this->readint(); if ($magic == $MAGIC1) { $this->BYTEORDER = 0; } elseif ($magic == $MAGIC2) { $this->BYTEORDER = 1; } else { $this->error = 1; // not MO file return false; } // FIXME: Do we care about revision? We should. $revision = $this->readint(); $this->total = $this->readint(); $this->originals = $this->readint(); $this->translations = $this->readint(); } /** * Loads the translation tables from the MO file into the cache * If caching is enabled, also loads all strings into a cache * to speed up translation lookups * * @access private */ function load_tables() { if (is_array($this->cache_translations) && is_array($this->table_originals) && is_array($this->table_translations)) return; /* get original and translations tables */ $this->STREAM->seekto($this->originals); $this->table_originals = $this->readintarray($this->total * 2); $this->STREAM->seekto($this->translations); $this->table_translations = $this->readintarray($this->total * 2); if ($this->enable_cache) { $this->cache_translations = array (); /* read all strings in the cache */ for ($i = 0; $i < $this->total; $i++) { $this->STREAM->seekto($this->table_originals[$i * 2 + 2]); $original = $this->STREAM->read($this->table_originals[$i * 2 + 1]); $this->STREAM->seekto($this->table_translations[$i * 2 + 2]); $translation = $this->STREAM->read($this->table_translations[$i * 2 + 1]); $this->cache_translations[$original] = $translation; } } } /** * Returns a string from the "originals" table * * @access private * @param int num Offset number of original string * @return string Requested string if found, otherwise '' */ function get_original_string($num) { $length = $this->table_originals[$num * 2 + 1]; $offset = $this->table_originals[$num * 2 + 2]; if (! $length) return ''; $this->STREAM->seekto($offset); $data = $this->STREAM->read($length); return (string)$data; } /** * Returns a string from the "translations" table * * @access private * @param int num Offset number of original string * @return string Requested string if found, otherwise '' */ function get_translation_string($num) { $length = $this->table_translations[$num * 2 + 1]; $offset = $this->table_translations[$num * 2 + 2]; if (! $length) return ''; $this->STREAM->seekto($offset); $data = $this->STREAM->read($length); return (string)$data; } /** * Binary search for string * * @access private * @param string string * @param int start (internally used in recursive function) * @param int end (internally used in recursive function) * @return int string number (offset in originals table) */ function find_string($string, $start = -1, $end = -1) { if (($start == -1) or ($end == -1)) { // find_string is called with only one parameter, set start end end $start = 0; $end = $this->total; } if (abs($start - $end) <= 1) { // We're done, now we either found the string, or it doesn't exist $txt = $this->get_original_string($start); if ($string == $txt) return $start; else return -1; } else if ($start > $end) { // start > end -> turn around and start over return $this->find_string($string, $end, $start); } else { // Divide table in two parts $half = (int)(($start + $end) / 2); $cmp = strcmp($string, $this->get_original_string($half)); if ($cmp == 0) // string is exactly in the middle => return it return $half; else if ($cmp < 0) // The string is in the upper half return $this->find_string($string, $start, $half); else // The string is in the lower half return $this->find_string($string, $half, $end); } } /** * Translates a string * * @access public * @param string string to be translated * @return string translated string (or original, if not found) */ function translate($string) { if ($this->short_circuit) return $string; $this->load_tables(); if ($this->enable_cache) { // Caching enabled, get translated string from cache if (array_key_exists($string, $this->cache_translations)) return $this->cache_translations[$string]; else return $string; } else { // Caching not enabled, try to find string $num = $this->find_string($string); if ($num == -1) return $string; else return $this->get_translation_string($num); } } /** * Get possible plural forms from MO header * * @access private * @return string plural form header */ function get_plural_forms() { // lets assume message number 0 is header // this is true, right? $this->load_tables(); // cache header field for plural forms if (! is_string($this->pluralheader)) { if ($this->enable_cache) { $header = $this->cache_translations[""]; } else { $header = $this->get_translation_string(0); } if (eregi("plural-forms: (.*)\n", $header, $regs)) $expr = $regs[1]; else $expr = "nplurals=2; plural=n == 1 ? 0 : 1;"; $this->pluralheader = $expr; } return $this->pluralheader; } /** * Detects which plural form to take * * @access private * @param n count * @return int array index of the right plural form */ function select_string($n) { $string = $this->get_plural_forms(); $string = str_replace('nplurals',"\$total",$string); $string = str_replace("n",$n,$string); $string = str_replace('plural',"\$plural",$string); $total = 0; $plural = 0; eval("$string"); if ($plural >= $total) $plural = 0; return $plural; } /** * Plural version of gettext * * @access public * @param string single * @param string plural * @param string number * @return translated plural form */ function ngettext($single, $plural, $number) { if ($this->short_circuit) { if ($number != 1) return $plural; else return $single; } // find out the appropriate form $select = $this->select_string($number); // this should contains all strings separated by NULLs $key = $single.chr(0).$plural; if ($this->enable_cache) { if (! array_key_exists($key, $this->cache_translations)) { return ($number != 1) ? $plural : $single; } else { $result = $this->cache_translations[$key]; $list = explode(chr(0), $result); return $list[$select]; } } else { $num = $this->find_string($key); if ($num == -1) { return ($number != 1) ? $plural : $single; } else { $result = $this->get_translation_string($num); $list = explode(chr(0), $result); return $list[$select]; } } } } ?> --- NEW FILE: README --- PHP-gettext 1.0 Copyright 2003, 2005 -- Danilo "angry with PHP[1]" Segan Licensed under GPLv2 (or any later version, see COPYING) [1] PHP is actually cyrillic, and translates roughly to "works-doesn't-work" (UTF-8: Ради-Ðе-Ради) Introduction How many times did you look for a good translation tool, and found out that gettext is best for the job? Many times. How many times did you try to use gettext in PHP, but failed miserably, because either your hosting provider didn't support it, or the server didn't have adequate locale? Many times. Well, this is a solution to your needs. It allows using gettext tools for managing translations, yet it doesn't require gettext library at all. It parses generated MO files directly, and thus might be a bit slower than the (maybe provided) gettext library. PHP-gettext is a simple reader for GNU gettext MO files. Those are binary containers for translations, produced by GNU msgfmt. Why? I got used to having gettext work even without gettext library. It's there in my favourite language Python, so I was surprised that I couldn't find it in PHP. I even Googled for it, but to no avail. So, I said, what the heck, I'm going to write it for this disguisting language of PHP, because I'm often constrained to it. Features o Support for simple translations Just define a simple alias for translate() function (suggested use of _() or gettext(); see provided example). o Support for ngettext calls (plural forms, see a note under bugs) You may also use plural forms. Translations in MO files need to provide this, and they must also provide "plural-forms" header. Please see 'info gettext' for more details. o Support for reading straight files, or strings (!!!) Since I can imagine many different backends for reading in the MO file data, I used imaginary abstract class StreamReader to do all the input (check streams.php). For your convenience, I've already provided two classes for reading files: FileReader and StringReader (CachedFileReader is a combination of the two: it loads entire file contents into a string, and then works on that). See example below for usage. You can for instance use StringReader when you read in data from a database, or you can create your own derivative of StreamReader for anything you like. Bugs Plural-forms field in MO header (translation for empty string, i.e. "") is treated according to PHP syntactic rules (it's eval()ed). Since these should actually follow C syntax, there are some problems. For instance, I'm used to using this: Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : \ n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2; but it fails with PHP (it sets $plural=2 instead of 0 for $n==1). The fix is usually simple, but I'm lazy to go into the details of PHP operator precedence, and maybe try to fix it. In here, I had to put everything after the first ':' in parenthesis: Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : \ (n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); That works, and I'm satisfied. Besides this one, there are probably a bunch of other bugs, since I hate PHP (did I mention it already? no? strange), and don't know it very well. So, feel free to fix any of those and report them back to me at <da...@kv...>. Usage Put files streams.php and gettext.php somewhere you can load them from, and require 'em in where you want to use them. Then, create one 'stream reader' (a class that provides functions like read(), seekto(), currentpos() and length()) which will provide data for the 'gettext_reader', with eg. $streamer = new FileStream('data.mo'); Then, use that as a parameter to gettext_reader constructor: $wohoo = new gettext_reader($streamer); If you want to disable pre-loading of entire message catalog in memory (if, for example, you have a multi-thousand message catalog which you'll use only occasionally), use "false" for second parameter to gettext_reader constructor: $wohoo = new gettext_reader($streamer, false); From now on, you have all the benefits of gettext data at your disposal, so may run: print $wohoo->translate("This is a test"); print $wohoo->ngettext("%d bird", "%d birds", $birds); You might need to pass parameter "-k" to xgettext to make it extract all the strings. In above example, try with xgettext -ktranslate -kngettext:1,2 file.php what should create messages.po which contains two messages for translation. I suggest creating simple aliases for these functions (see example/pigs.php for how do I do it, which means it's probably a bad way). Example See in examples/ subdirectory. There are a couple of files. pigs.php is an example, serbian.po is a translation to Serbian language, and serbian.mo is generated with msgfmt -o serbian.mo serbian.po There is also simple "update" script that can be used to generate POT file and to update the translation using msgmerge. Interesting TODO: o Try to parse "plural-forms" header field, and to follow C syntax rules. This won't be easy. Boring TODO: o Create compatibility layer so these functions could replace standard gettext library completely, and as straightforward as possible (drop-in replacement). o Learn PHP and fix bugs, slowness and other stuff resulting from my lack of knowledge (but *maybe*, it's not my knowledge that is bad, but PHP itself ;-). (This is mostly done thanks to Nico Kaiser.) o Try to use hash tables in MO files: with pre-loading, would it be useful at all? Never-asked-questions: o Why did you mark this as version 1.0 when this is the first code release? Well, it's quite simple. I consider that the first released thing should be labeled "version 1" (first, right?). Zero is there to indicate that there's zero improvement and/or change compared to "version 1". I plan to use version numbers 1.0.* for small bugfixes, and to release 1.1 as "first stable release of version 1". This may trick someone that this is actually useful software, but as with any other free software, I take NO RESPONSIBILITY for creating such a masterpiece that will smoke crack, trash your hard disk, and make lasers in your CD device dance to the tune of Mozart's 40th Symphony (there is one like that, right?). o Can I...? Yes, you can. This is free software (as in freedom, free speech), and you might do whatever you wish with it, provided you do not limit freedom of others (GPL). I'm considering licensing this under LGPL, but I *do* want *every* PHP-gettext user to contribute and respect ideas of free software, so don't count on it happening anytime soon. I'm sorry that I'm taking away your freedom of taking others' freedom away, but I believe that's neglible as compared to what freedoms you could take away. ;-) Uhm, whatever. --- NEW FILE: Makefile --- PACKAGE = php-gettext-$(VERSION) VERSION = 1.0.3 DIST_FILES = \ gettext.php \ streams.php \ AUTHORS \ ChangeLog \ README \ COPYING \ Makefile \ examples/pigs.php \ examples/serbian.po \ examples/serbian.mo \ examples/update dist: if [ -d $(PACKAGE) ]; then \ rm -rf $(PACKAGE); \ fi; \ mkdir $(PACKAGE); \ if [ -d $(PACKAGE) ]; then \ cp -rp --parents $(DIST_FILES) $(PACKAGE); \ tar cvzf $(PACKAGE).tar.gz $(PACKAGE); \ rm -rf $(PACKAGE); \ fi; --- NEW FILE: ChangeLog --- 2005-02-28 Danilo Å egan <ds...@gm...> * AUTHORS: Added Nico to the list. * Makefile (VERSION): Up to 1.0.3. * README: Updated. 2005-02-28 Danilo Å egan <ds...@gm...> * gettext.php: Added pre-loading, code documentation, and many code clean-ups by Nico Kaiser <ni...@si...>. 2005-02-28 Danilo Å egan <ds...@gm...> * streams.php (FileReader.read): Handle read($bytes = 0). * examples/pigs.php: Prefix gettext function names with T or T_. * examples/update: Use the same keywords T_ and T_ngettext. * streams.php: Added CachedFileReader. 2003-11-11 Danilo Å egan <ds...@gm...> * gettext.php: Added hashing to find_string. 2003-11-01 Danilo Å egan <ds...@gm...> * Makefile (DIST_FILES): Replaced LICENSE with COPYING. (VERSION): Up to 1.0.2. * AUTHORS: Minor edits. * README: Minor edits. * COPYING: Removed LICENSE, added this file. * gettext.php: Added copyright notice and disclaimer. * streams.php: Same. * examples/pigs.php: Same. 2003-10-23 Danilo Å egan <ds...@gm...> * Makefile: Upped version to 1.0.1. * gettext.php (gettext_reader): Remove a call to set_total_plurals. (set_total_plurals): Removed unused function for some better days. 2003-10-23 Danilo Å egan <ds...@gm...> * Makefile: Added, version 1.0.0. * examples/*: Added an example of usage. * README: Described all the crap. 2003-10-22 Danilo Å egan <ds...@gm...> * gettext.php: Plural forms implemented too. * streams.php: Added FileReader for direct access to files (no need to keep file in memory). * gettext.php: It works, except for plural forms. * streams.php: Created abstract class StreamReader. Added StringReader class. * gettext.php: Started writing gettext_reader. --- NEW FILE: COPYING --- GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. <one line to give the program's name and a brief idea of what it does.> Copyright (C) <year> <name of author> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. <signature of Ty Coon>, 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. --- NEW FILE: AUTHORS --- Danilo Segan <da...@kv...> Nico Kaiser <ni...@si...> (contributed most changes between 1.0.2 and 1.0.3) |
From: Dashamir H. <das...@us...> - 2005-06-13 06:55:33
|
Update of /cvsroot/phpwebapp/web_app/l10n In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8209/l10n Added Files: class.L10n.php Log Message: added translation (i18n/l10n) support --- NEW FILE: class.L10n.php --- <?php /* This file is part of phpWebApp, which is a framework for building web application based on relational databases. Copyright 2001,2002,2003,2004 Dashamir Hoxha, das...@us... phpWebApp is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. phpWebApp is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with phpWebApp; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ if (USE_PHP_GETTEXT) { include_once dirname(__FILE__)."/php-gettext/streams.php"; include_once dirname(__FILE__)."/php-gettext/gettext.php"; } /** * This class is used by the framework for translating messages and texts. * It can use either the PHP-gettext or the GNU gettext packages, since * both of them have some advantages or disadvantages. * * The framework allows to have separate translation (localization) files for * each template that is included and for each webobject. If the * directory that contains the template (or webbox) contains also * a subdirectory named 'l10n', then the framework will look inside * this directory for the file that contains the translations of the * messages of the template/webbox. It will look for the file * l10n/lng/LC_MESSAGES/tplname.mo (or l10n/lng/LC_MESSAGES/webboxid.mo) * which contains the translation messages of the template (or webbox). * * If the subdirectory 'l10n/' does not exist, the framework will * look for the file tplname.mo (or webboxid.mo) in the first 'l10n/' * in the parent directory or in the ancestors. If even the application * directory does not contain a 'l10n/' subdir, then the last place * to look for will be the system default (usually /usr/share/locale/). * * About the language code, if it is e.g. 'en_US', then it will search * first the folder 'en_US/' and then the folder 'en/'. * * If the file tplname.mo (or webboxid.mo) is not found at all in * the searched directories, then the last translation file (*.mo) * that was found will be used for translating messages. This is usually * the translation file (*.mo) of the containing template or webbox * (from which this template/webbox is included directly or indirectly). */ class L10n { /** path of the localization directory ('l10n/') */ var $path; /** textdomain (basename of the .mo translation file) */ var $domain; /** the code of the target language (e.g. en_US or sq_AL) */ var $lng; /** the codeset of the target language */ var $codeset; /** keeps the states of translation files */ var $stack = array(); /** used if the PHP-gettext is used instead of the GNU gettext */ var $php_gettext; /** * Constructor. * * @path is the localization (l10n) directory * @domain is the name of the translation file (domain.mo) * @lng is the language code, like 'en_US' or 'en', etc. * @codeset is the codeset of the language, like 'iso-latin-1', etc. */ function L10n($path =UNDEFINED, $domain =UNDEFINED, $lng =LNG, $codeset =CODESET) { if ($path==UNDEFINED) { if (file_exists(APP_PATH.'l10n')) $path = APP_PATH.'l10n'; else $path = '/usr/share/locale'; } if ($domain==UNDEFINED) { //set as domain the name of the application ereg('/([^/]+)/$', APP_PATH, $regs); $domain = $regs[1]; } $this->path = $path; $this->domain = $domain; $this->lng = $lng; $this->codeset = $codeset; $this->load_translation_file(); } /** * Search the text for strings like T_("...") * and replace them by the translation of the * string inside the double quotes. It is usually * called on rendering (generating html pages). */ function translate($text) { while ( ereg('T_\\("([^"]*)"\\)', $text, $regs) ) { $str2translate = $regs[0]; $original = $regs[1]; $translation = T_($original); $text = str_replace($str2translate, $translation, $text); } return $text; } /** * Change the language and (optionally) the codeset of the language. * It can be called from the application to change the language dynamically. */ function set_lng($lng, $codeset =UNDEFINED) { if ($lng==$this->lng and $codeset==$this->codeset) return; $this->lng = $lng; if ($codeset!=UNDEFINED) $this->codeset = $codeset; $this->load_translation_file(); } /** * Set the locale and the textdomain for gettext. * Set also the encoding, if it is defined. * The translation file will be looked for in: * $path/$lng/LC_MESSAGES/$domain.mo */ function load_translation_file() { $lng = $this->lng; $codeset = $this->codeset; $path = $this->path; $domain = $this->domain; if (USE_PHP_GETTEXT) { $file = $this->find_file_mo($path, $domain); if ($file) { $input = new FileReader($file); $this->php_gettext = new gettext_reader($input); } } else //use GNU gettext functions { if ($lng != UNDEFINED) setlocale(LC_MESSAGES, $lng); if ($codeset != UNDEFINED) bind_textdomain_codeset($domain, $codeset); bindtextdomain($domain, $path); textdomain($domain); } } /** * Push the current state of the translation on the stack. * This is usually called by the rendering class when it * starts to render a new template or webbox, since each * template or webbox can have its own locatization (l10n) * files, and after it is done, we would like to return * to the previous translation state. */ function pushState() { $item = array( 'path' => $this->path, 'domain' => $this->domain, 'lng' => $this->lng, 'codeset' => $this->codeset ); array_push($this->stack, $item); } /** * Pop the current state of translation from the stack. * If the previous state is different from the current state, * load the previous translation file. */ function popState() { $item = array_pop($this->stack); //if the previous state is different from the current state, //load the previous translation file if ( $item['path'] != $this->path or $item['domain'] != $this->domain or $item['lng'] != $this->lng or $item['codeset'] != $this->codeset ) { $this->path = $item['path']; $this->domain = $item['domain']; $this->lng = $item['lng']; $this->codeset = $item['codeset']; $this->load_translation_file(); } } /** * Find and load the appropriate translation file (*.mo). * This function is usually called by the framework to load * the translation file of a template or webbox. If no * translation file is found (searching according to certain * rules), then nothing is changed and the existing translation * file will be used. * * @dir is the directory containing the template or webbox * @id is the id of the webbox or the filename of the template */ function set_translation_file($dir, $id) { $dir = $this->find_l10n($dir); $l10n = ($dir ? $dir.'l10n' : '/usr/share/locale'); $file = $this->find_file_mo($l10n, $id); if (!$file) return; //a translation file is found, save the parameters and load it $this->path = $l10n; $this->domain = $id; $this->load_translation_file(); } /** * Look at the given path for a 'l10n' subdirectory; if not found, * look also at the parent and all the ancestor paths, up to the * application path. Return the first path that contains a 'l10n' * directory, or false if not found. Called by set_translation_file(). */ function find_l10n($path) { while ($path != '') { if (file_exists(APP_PATH.$path.'l10n/')) return APP_PATH.$path; //get the parent directory $path = ereg_replace('[^/]+/?$', '', $path); } //no 'l10n' dir was found, return false return false; } /** * Return the path of the translation file (domain.mo) * in the given l10n/ directory. If the language code is * something like 'en_US', then check also with 'en', if not * found in 'en_US'. If not found at all, return false. * Called by set_translation_file(). */ function find_file_mo($l10n, $domain) { $lng = $this->lng; $file = "$l10n/$lng/LC_MESSAGES/$domain.mo"; if (file_exists($file)) return $file; //if not found for lng=en_US, check also for lng=en $lng = ereg_replace('_.*', '', $lng); $file = "$l10n/$lng/LC_MESSAGES/$domain.mo"; if (file_exists($file)) return $file; //domain.mo is not found, return false return false; } } /** * This is an alias for gettext. It should be used in the PHP code to get * the translation of a string, like this: $var = T_("..."); */ function T_($str) { if (USE_PHP_GETTEXT) { global $l10n; if (isset($l10n->php_gettext)) return $l10n->php_gettext->translate($str); else return $str; } else //use GNU gettext { return gettext($str); } } ?> |
From: Dashamir H. <das...@us...> - 2005-06-13 06:55:32
|
Update of /cvsroot/phpwebapp/web_app In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8209 Modified Files: const.Paths.php WebApp.php Log Message: added translation (i18n/l10n) support Index: const.Paths.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/const.Paths.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** const.Paths.php 22 Jul 2004 16:25:39 -0000 1.6 --- const.Paths.php 13 Jun 2005 06:55:21 -0000 1.7 *************** *** 29,32 **** --- 29,33 ---- define("PARSER_PATH", WEBAPP_PATH."parser/"); define("SESSION_PATH", WEBAPP_PATH."session/"); + define("L10N_PATH", WEBAPP_PATH."l10n/"); define("DB_PATH", WEBAPP_PATH."database/"); define("APPEND_PATH", WEBAPP_PATH."append/"); Index: WebApp.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/WebApp.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** WebApp.php 22 Jul 2004 16:25:39 -0000 1.6 --- WebApp.php 13 Jun 2005 06:55:21 -0000 1.7 *************** *** 32,35 **** --- 32,38 ---- include_once PARSER_PATH."package.ParseRender.php"; + //include localization component + include_once L10N_PATH."class.L10n.php"; + //include database component include_once DB_PATH."package.DB.php"; *************** *** 44,47 **** --- 47,51 ---- $request = new Request; $tplVars = new VarStack; + $l10n = new L10n; $webPage = new WebPage; $parser = new Parser; |
From: Dashamir H. <das...@us...> - 2005-06-13 06:55:32
|
Update of /cvsroot/phpwebapp/web_app/l10n/php-gettext/examples In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8209/l10n/php-gettext/examples Added Files: update serbian.po serbian.mo pigs.php Log Message: added translation (i18n/l10n) support --- NEW FILE: update --- #!/bin/sh TEMPLATE=pigs.pot xgettext -kT_ngettext:1,2 -kT_ -L PHP -o $TEMPLATE pigs.php if [ x$1 == 'x-p' ]; then msgfmt --statistics $TEMPLATE else if [ -f $1.po ]; then msgmerge -o .tmp$1.po $1.po $TEMPLATE mv .tmp$1.po $1.po msgfmt --statistics $1.po else echo "Usage: $0 [-p|<basename>]" fi fi --- NEW FILE: serbian.po --- # Sample translation for PHP-gettext 1.0 # Copyright (c) 2003 Danilo Segan <da...@kv...> # msgid "" msgstr "" "Project-Id-Version: pigs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2003-10-23 04:50+0200\n" "PO-Revision-Date: 2003-11-01 23:40+0100\n" "Last-Translator: Danilo Segan <da...@kv...>\n" "Language-Team: Serbian (sr) <da...@kv...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : (n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: pigs.php:19 msgid "" "This is how the story goes.\n" "\n" msgstr "" "Ðвако иде пÑиÑа.\n" "\n" #: pigs.php:21 #, php-format msgid "%d pig went to the market\n" msgid_plural "%d pigs went to the market\n" msgstr[0] "%d мало пÑаÑе Ñе оÑиÑло на пиÑаÑ\n" msgstr[1] "%d мала пÑаÑеÑа ÑÑ Ð¾ÑиÑла на пиÑаÑ\n" msgstr[2] "%d Ð¼Ð°Ð»Ð¸Ñ Ð¿ÑаÑеÑа Ñе оÑиÑло на пиÑаÑ\n" --- NEW FILE: serbian.mo --- Þ Report-Msgid-Bugs-To: POT-Creation-Date: 2003-10-23 04:50+0200 PO-Revision-Date: 2003-11-01 23:40+0100 Last-Translator: Danilo Segan <da...@kv...> Language-Team: Serbian (sr) <da...@kv...> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : (n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); --- NEW FILE: pigs.php --- <?php /* Copyright (c) 2003 Danilo Segan <da...@kv...>. This file is part of PHP-gettext. PHP-gettext is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. PHP-gettext is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with PHP-gettext; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ require("../streams.php"); require("../gettext.php"); $input = new FileReader('serbian.mo'); $l10n = new gettext_reader($input); // create standard wrapers, so xgettext could work function T_($text) { global $l10n; return $l10n->translate($text); } function T_ngettext($single, $plural, $number) { global $l10n; return $l10n->ngettext($single, $plural, $number); } print T_("This is how the story goes.\n\n"); for ($number=6; $number>=0; $number--) { print sprintf( T_ngettext("%d pig went to the market\n", "%d pigs went to the market\n", $number), $number ); } ?> |
From: Dashamir H. <das...@us...> - 2005-06-13 06:54:20
|
Update of /cvsroot/phpwebapp/web_app/l10n/php-gettext/examples In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7564/l10n/php-gettext/examples Log Message: Directory /cvsroot/phpwebapp/web_app/l10n/php-gettext/examples added to the repository |
From: Dashamir H. <das...@us...> - 2005-06-13 06:53:53
|
Update of /cvsroot/phpwebapp/web_app/l10n/php-gettext In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7358/l10n/php-gettext Log Message: Directory /cvsroot/phpwebapp/web_app/l10n/php-gettext added to the repository |
From: Dashamir H. <das...@us...> - 2005-06-13 06:53:26
|
Update of /cvsroot/phpwebapp/web_app/l10n In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7023/l10n Log Message: Directory /cvsroot/phpwebapp/web_app/l10n added to the repository |