summaryrefslogtreecommitdiff
path: root/library
diff options
context:
space:
mode:
authorfisharebest <fisharebest@gmail.com>2011-11-23 13:04:37 +0000
committerfisharebest <fisharebest@gmail.com>2011-11-23 13:04:37 +0000
commit4b470eeada6cd66724c050b5ee412cfa013f5997 (patch)
tree83d2b522a32bcf101b31199bc70bb11a66694322 /library
parentde97bbbaad4f4624f8c7912709ffcb03d120ea13 (diff)
downloadwebtrees-4b470eeada6cd66724c050b5ee412cfa013f5997.tar.gz
webtrees-4b470eeada6cd66724c050b5ee412cfa013f5997.tar.bz2
webtrees-4b470eeada6cd66724c050b5ee412cfa013f5997.zip
I18N: add the ability to translate the "a.m." and "p.m." time indicators
Diffstat (limited to 'library')
-rw-r--r--library/WT/I18N.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/WT/I18N.php b/library/WT/I18N.php
index e6e96261b4..50d61f9a5b 100644
--- a/library/WT/I18N.php
+++ b/library/WT/I18N.php
@@ -136,7 +136,7 @@ class WT_I18N {
global $DATE_FORMAT; // I18N: This is the format string for full dates. See http://php.net/date for codes
$DATE_FORMAT=self::noop('%j %F %Y');
global $TIME_FORMAT; // I18N: This a the format string for the time-of-day. See http://php.net/date for codes
- $TIME_FORMAT=self::noop('%g:%i:%s%a');
+ $TIME_FORMAT=self::noop('%g:%i:%s %a');
global $ALPHABET_upper; // Alphabetic sorting sequence (upper-case letters), used by webtrees to sort strings
$ALPHABET_upper=self::noop('ALPHABET_upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ');
list(, $ALPHABET_upper)=explode('=', $ALPHABET_upper);