Update of /cvsroot/phpwebapp/documentation/config
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27022/config
Modified Files:
const.Options.php
Log Message:
Index: const.Options.php
===================================================================
RCS file: /cvsroot/phpwebapp/documentation/config/const.Options.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** const.Options.php 26 Oct 2005 14:36:58 -0000 1.4
--- const.Options.php 2 Nov 2005 15:23:04 -0000 1.5
***************
*** 69,71 ****
--- 69,84 ----
*/
define("DISPLAY_CGI_VARS", false);
+
+ /**
+ * The constants LNG and CODESET set the language and codeset of
+ * the application. They are used for the localization (translation) of
+ * the messages. 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');
+
+ /** if true, then use the php-gettext instead of GNU gettext */
+ define('USE_PHP_GETTEXT', true);
+
?>
\ No newline at end of file
|