Use strftime to format date with translated month names
This commit is contained in:
parent
e7c9d5fe54
commit
ec253f1354
|
@ -1,5 +1,5 @@
|
||||||
<?php
|
<?php
|
||||||
$LOCALIZATIONS = array(
|
$LOCALIZATIONS = array(
|
||||||
'date' => 'd.m.Y',
|
'date' => '%d.%m.%Y',
|
||||||
'datetime' => 'd.m.Y H:i:s',
|
'datetime' => '%d.%m.%Y %H:%M:%S',
|
||||||
'time' => 'H:i:s' );
|
'time' => '%H:%M:%S' );
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
<?php
|
||||||
|
$LOCALIZATIONS = array(
|
||||||
|
'date' => '%B %e, %Y',
|
||||||
|
'datetime' => '%B %e, %Y %H:%M',
|
||||||
|
'time' => '%H:%M:%S' );
|
|
@ -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
|
* Localization
|
||||||
*/
|
*/
|
||||||
private $localizations = array(
|
private $localizations = array(
|
||||||
'date' => 'd.m.Y',
|
'date' => '%d.%m.%Y',
|
||||||
'datetime' => 'd.m.Y H:i:s',
|
'datetime' => '%d.%m.%Y %H:%M:%S',
|
||||||
'time' => 'H:i:s');
|
'time' => '%H:%M:%S');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* get an L10N instance
|
* get an L10N instance
|
||||||
|
@ -216,7 +216,9 @@ class OC_L10N{
|
||||||
case 'time':
|
case 'time':
|
||||||
if($data instanceof DateTime) return $data->format($this->localizations[$type]);
|
if($data instanceof DateTime) return $data->format($this->localizations[$type]);
|
||||||
elseif(is_string($data)) $data = strtotime($data);
|
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;
|
break;
|
||||||
default:
|
default:
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -162,8 +162,8 @@ class OC_Util {
|
||||||
$offset=$clientTimeZone-$systemTimeZone;
|
$offset=$clientTimeZone-$systemTimeZone;
|
||||||
$timestamp=$timestamp+$offset*60;
|
$timestamp=$timestamp+$offset*60;
|
||||||
}
|
}
|
||||||
$timeformat=$dateOnly?'F j, Y':'F j, Y, H:i';
|
$l=OC_L10N::get('lib');
|
||||||
return date($timeformat,$timestamp);
|
return $l->l($dateOnly ? 'date' : 'datetime', $timestamp);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue