summaryrefslogtreecommitdiffstats
path: root/core/l10n
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2012-10-22 23:53:24 -0700
committerLukas Reschke <lukas@statuscode.ch>2012-10-22 23:53:24 -0700
commitb66dd3ebef605e0cd681c5621706e880c7d38571 (patch)
tree96833b868494b5de4d9a15676cb2ba9c80fd3ab7 /core/l10n
parentbc2a648f2d18537a8e9d20bbf9eb468325a84c7f (diff)
parent41b597e179a694973c709613cdf41e2b379c8df9 (diff)
downloadnextcloud-server-b66dd3ebef605e0cd681c5621706e880c7d38571.tar.gz
nextcloud-server-b66dd3ebef605e0cd681c5621706e880c7d38571.zip
Merge pull request #38 from scambra/datepicker-l10n
Translate Datepicker
Diffstat (limited to 'core/l10n')
-rw-r--r--core/l10n/l10n-de.php4
-rw-r--r--core/l10n/l10n-en.php4
-rw-r--r--core/l10n/l10n-es.php4
3 files changed, 9 insertions, 3 deletions
diff --git a/core/l10n/l10n-de.php b/core/l10n/l10n-de.php
index 976f8ce3c51..77d35af4936 100644
--- a/core/l10n/l10n-de.php
+++ b/core/l10n/l10n-de.php
@@ -1,5 +1,7 @@
<?php
$LOCALIZATIONS = array(
+ 'jsdate' => 'dd.mm.yy',
'date' => '%d.%m.%Y',
'datetime' => '%d.%m.%Y %H:%M:%S',
- 'time' => '%H:%M:%S' );
+ 'time' => '%H:%M:%S',
+ 'firstday' => 0 );
diff --git a/core/l10n/l10n-en.php b/core/l10n/l10n-en.php
index 3a050d477ce..9ee748bee23 100644
--- a/core/l10n/l10n-en.php
+++ b/core/l10n/l10n-en.php
@@ -1,5 +1,7 @@
<?php
$LOCALIZATIONS = array(
+ 'jsdate' => 'MM d, yy',
'date' => '%B %e, %Y',
'datetime' => '%B %e, %Y %H:%M',
- 'time' => '%H:%M:%S' );
+ 'time' => '%H:%M:%S',
+ 'firstday' => 0 );
diff --git a/core/l10n/l10n-es.php b/core/l10n/l10n-es.php
index b81464b491a..13db2ec5d4c 100644
--- a/core/l10n/l10n-es.php
+++ b/core/l10n/l10n-es.php
@@ -1,5 +1,7 @@
<?php
$LOCALIZATIONS = array(
+ 'jsdate' => "d 'de' MM 'de' yy",
'date' => '%e de %B de %Y',
'datetime' => '%e de %B de %Y %H:%M',
- 'time' => '%H:%M:%S' );
+ 'time' => '%H:%M:%S',
+ 'firstday' => 1 );