diff options
author | Loui Chang <louipc.ist@gmail.com> | 2008-07-09 20:38:08 +0200 |
---|---|---|
committer | Loui Chang <louipc.ist@gmail.com> | 2008-07-22 19:47:17 +0200 |
commit | 1a1a6eb36e17315f08eee0e44a83fe4bdf0887f5 (patch) | |
tree | 1c07e49af06b98ec2b12d0f35a114570be3d9a59 /web/lib/config.inc.proto | |
parent | 1deb924674d1a42fc9b127a18bdc012c84ec6f93 (diff) | |
download | aur-1a1a6eb36e17315f08eee0e44a83fe4bdf0887f5.tar.gz aur-1a1a6eb36e17315f08eee0e44a83fe4bdf0887f5.tar.xz |
Add a new DEFAULT_LANG constant.
DEFAULT_LANG will essentially be used to specify what language
strings are initially written in.
This will eliminate the need for English translation arrays in
AUR and make adding or changing the English strings a lot easier.
DEFAULT_LANG may be required for strings to display properly.
Also change the output when a translation isn't found.
Eliminate the <b> which can cause validation errors depending
on where the string is placed.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
Diffstat (limited to 'web/lib/config.inc.proto')
-rw-r--r-- | web/lib/config.inc.proto | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/web/lib/config.inc.proto b/web/lib/config.inc.proto index 7a0a155d..505fa7cc 100644 --- a/web/lib/config.inc.proto +++ b/web/lib/config.inc.proto @@ -16,9 +16,12 @@ define( "USERNAME_MAX_LEN", 16 ); define( "PASSWD_MIN_LEN", 4 ); define( "PASSWD_MAX_LEN", 128 ); -$LOGIN_TIMEOUT = 7200; # number of idle seconds before timeout +# Language that messages are initially written in. +# This should never change. +define("DEFAULT_LANG", "en"); -$SUPPORTED_LANGS = array( # what languages we have translations for +# Languages we have translations for +$SUPPORTED_LANGS = array( "en" => "English", "pl" => "Polski", "it" => "Italiano", @@ -30,4 +33,6 @@ $SUPPORTED_LANGS = array( # what languages we have translations for "fr" => "Français" ); -?> +# Idle seconds before timeout +$LOGIN_TIMEOUT = 7200; + |