Use strftime to format date with translated month names
This commit is contained in:
parent
e7c9d5fe54
commit
ec253f1354
5 changed files with 21 additions and 9 deletions
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
$LOCALIZATIONS = array(
|
||||
'date' => 'd.m.Y',
|
||||
'datetime' => 'd.m.Y H:i:s',
|
||||
'time' => 'H:i:s' );
|
||||
'date' => '%d.%m.%Y',
|
||||
'datetime' => '%d.%m.%Y %H:%M:%S',
|
||||
'time' => '%H:%M:%S' );
|
||||
|
|
5
core/l10n/l10n-en.php
Normal file
5
core/l10n/l10n-en.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
$LOCALIZATIONS = array(
|
||||
'date' => '%B %e, %Y',
|
||||
'datetime' => '%B %e, %Y %H:%M',
|
||||
'time' => '%H:%M:%S' );
|
5
core/l10n/l10n-es.php
Normal file
5
core/l10n/l10n-es.php
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
$LOCALIZATIONS = array(
|
||||
'date' => '%e de %B de %Y',
|
||||
'datetime' => '%e de %B de %Y %H:%M',
|
||||
'time' => '%H:%M:%S' );
|
10
lib/l10n.php
10
lib/l10n.php
|
@ -58,9 +58,9 @@ class OC_L10N{
|
|||
* Localization
|
||||
*/
|
||||
private $localizations = array(
|
||||
'date' => 'd.m.Y',
|
||||
'datetime' => 'd.m.Y H:i:s',
|
||||
'time' => 'H:i:s');
|
||||
'date' => '%d.%m.%Y',
|
||||
'datetime' => '%d.%m.%Y %H:%M:%S',
|
||||
'time' => '%H:%M:%S');
|
||||
|
||||
/**
|
||||
* get an L10N instance
|
||||
|
@ -216,7 +216,9 @@ class OC_L10N{
|
|||
case 'time':
|
||||
if($data instanceof DateTime) return $data->format($this->localizations[$type]);
|
||||
elseif(is_string($data)) $data = strtotime($data);
|
||||
return date($this->localizations[$type], $data);
|
||||
$language = self::findLanguage();
|
||||
setlocale(LC_TIME, array($language, $language.'_'.strtoupper($language)));
|
||||
return strftime($this->localizations[$type], $data);
|
||||
break;
|
||||
default:
|
||||
return false;
|
||||
|
|
|
@ -162,8 +162,8 @@ class OC_Util {
|
|||
$offset=$clientTimeZone-$systemTimeZone;
|
||||
$timestamp=$timestamp+$offset*60;
|
||||
}
|
||||
$timeformat=$dateOnly?'F j, Y':'F j, Y, H:i';
|
||||
return date($timeformat,$timestamp);
|
||||
$l=OC_L10N::get('lib');
|
||||
return $l->l($dateOnly ? 'date' : 'datetime', $timestamp);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue