summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2012-10-18 08:09:58 -0700
committerThomas Müller <thomas.mueller@tmit.eu>2012-10-18 08:09:58 -0700
commite4c0bb59e52a2cc7be21cdc4180a7f1aa64b18b5 (patch)
tree1a308bbbe6f474b83a581107b3c24dc0a6439a5b /core
parente307bf31c801b554a44afddd37e8e6f425fab567 (diff)
parentd8eb62232e2b3003925c87b316b66ed6b39ff100 (diff)
downloadnextcloud-server-e4c0bb59e52a2cc7be21cdc4180a7f1aa64b18b5.tar.gz
nextcloud-server-e4c0bb59e52a2cc7be21cdc4180a7f1aa64b18b5.zip
Merge pull request #39 from scambra/date-l10n-fixes
Date l10n fixes
Diffstat (limited to 'core')
-rw-r--r--core/l10n/l10n-de.php6
-rw-r--r--core/l10n/l10n-en.php5
-rw-r--r--core/l10n/l10n-es.php5
3 files changed, 13 insertions, 3 deletions
diff --git a/core/l10n/l10n-de.php b/core/l10n/l10n-de.php
index f3084b05df8..976f8ce3c51 100644
--- a/core/l10n/l10n-de.php
+++ b/core/l10n/l10n-de.php
@@ -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' );
diff --git a/core/l10n/l10n-en.php b/core/l10n/l10n-en.php
new file mode 100644
index 00000000000..3a050d477ce
--- /dev/null
+++ b/core/l10n/l10n-en.php
@@ -0,0 +1,5 @@
+<?php
+$LOCALIZATIONS = array(
+ 'date' => '%B %e, %Y',
+ 'datetime' => '%B %e, %Y %H:%M',
+ 'time' => '%H:%M:%S' );
diff --git a/core/l10n/l10n-es.php b/core/l10n/l10n-es.php
new file mode 100644
index 00000000000..b81464b491a
--- /dev/null
+++ b/core/l10n/l10n-es.php
@@ -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' );