diff options
author | scambra <sergio@entrecables.com> | 2012-09-21 08:11:11 +0200 |
---|---|---|
committer | scambra <sergio@entrecables.com> | 2012-10-19 13:56:19 +0200 |
commit | a24d8db4b25e99f92ebb2cb65a97672f39a2f85f (patch) | |
tree | 36592e6017512655d099fc2005614e12090e9674 /core/l10n | |
parent | 8a03abec0d8a44d24cc8ad63acb8faf6932a1b5e (diff) | |
download | nextcloud-server-a24d8db4b25e99f92ebb2cb65a97672f39a2f85f.tar.gz nextcloud-server-a24d8db4b25e99f92ebb2cb65a97672f39a2f85f.zip |
translate datepicker
Diffstat (limited to 'core/l10n')
-rw-r--r-- | core/l10n/l10n-de.php | 3 | ||||
-rw-r--r-- | core/l10n/l10n-en.php | 3 | ||||
-rw-r--r-- | core/l10n/l10n-es.php | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/core/l10n/l10n-de.php b/core/l10n/l10n-de.php index 976f8ce3c51..d80c3beb2ba 100644 --- a/core/l10n/l10n-de.php +++ b/core/l10n/l10n-de.php @@ -2,4 +2,5 @@ $LOCALIZATIONS = array( '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..6268214b503 100644 --- a/core/l10n/l10n-en.php +++ b/core/l10n/l10n-en.php @@ -2,4 +2,5 @@ $LOCALIZATIONS = array( '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..8798b24d62f 100644 --- a/core/l10n/l10n-es.php +++ b/core/l10n/l10n-es.php @@ -2,4 +2,5 @@ $LOCALIZATIONS = array( 'date' => '%e de %B de %Y', 'datetime' => '%e de %B de %Y %H:%M', - 'time' => '%H:%M:%S' ); + 'time' => '%H:%M:%S', + 'firstday' => 1 ); |