diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2012-07-21 15:18:16 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2012-07-21 15:18:16 +0200 |
commit | 656d2c34e0ca1424f07bb0ec2ed7b8489becbd6c (patch) | |
tree | 617802a6eb6f79274b299909dd67a788b8c4db23 /phpBB/language/en/common.php | |
parent | 841ea0e494504400c798faa6cc860dd1179e1004 (diff) | |
download | forums-656d2c34e0ca1424f07bb0ec2ed7b8489becbd6c.tar forums-656d2c34e0ca1424f07bb0ec2ed7b8489becbd6c.tar.gz forums-656d2c34e0ca1424f07bb0ec2ed7b8489becbd6c.tar.bz2 forums-656d2c34e0ca1424f07bb0ec2ed7b8489becbd6c.tar.xz forums-656d2c34e0ca1424f07bb0ec2ed7b8489becbd6c.zip |
[ticket/11002] Use translating option to rename the Etc/GMT options
They have the invers offset of their name. So GMT+2 has the offset -7200.
To avoid additional confusion, we simply overwrite their name.
PHPBB3-11002
Diffstat (limited to 'phpBB/language/en/common.php')
-rw-r--r-- | phpBB/language/en/common.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/phpBB/language/en/common.php b/phpBB/language/en/common.php index d0afb846b4..ab66f38124 100644 --- a/phpBB/language/en/common.php +++ b/phpBB/language/en/common.php @@ -836,6 +836,35 @@ $lang = array_merge($lang, array( 'Dec' => 'Dec', ), + // Timezones can be translated. We use this for the Etc/GMT timezones here, + // because they are named invers to their offset. + 'timezones' => array( + 'Etc/GMT-12' => 'GMT+12', + 'Etc/GMT-11' => 'GMT+11', + 'Etc/GMT-10' => 'GMT+10', + 'Etc/GMT-9' => 'GMT+9', + 'Etc/GMT-8' => 'GMT+8', + 'Etc/GMT-7' => 'GMT+7', + 'Etc/GMT-6' => 'GMT+6', + 'Etc/GMT-5' => 'GMT+5', + 'Etc/GMT-4' => 'GMT+4', + 'Etc/GMT-3' => 'GMT+3', + 'Etc/GMT-2' => 'GMT+2', + 'Etc/GMT-1' => 'GMT+1', + 'Etc/GMT+1' => 'GMT-1', + 'Etc/GMT+2' => 'GMT-2', + 'Etc/GMT+3' => 'GMT-3', + 'Etc/GMT+4' => 'GMT-4', + 'Etc/GMT+5' => 'GMT-5', + 'Etc/GMT+6' => 'GMT-6', + 'Etc/GMT+7' => 'GMT-7', + 'Etc/GMT+8' => 'GMT-8', + 'Etc/GMT+9' => 'GMT-9', + 'Etc/GMT+10' => 'GMT-10', + 'Etc/GMT+11' => 'GMT-11', + 'Etc/GMT+12' => 'GMT-12', + ), + // The value is only an example and will get replaced by the current time on view 'dateformats' => array( 'd M Y, H:i' => '01 Jan 2007, 13:37', |