diff options
author | scambra <sergio@entrecables.com> | 2012-06-07 14:44:59 +0200 |
---|---|---|
committer | scambra <sergio@entrecables.com> | 2012-10-16 20:19:35 +0200 |
commit | ec253f1354b6993cf204ee60ec87350119a3c91e (patch) | |
tree | 0b8d8fd2efdf6c74bcacba7822fb96c5736e518e /core/l10n/l10n-en.php | |
parent | e7c9d5fe54ec619793ae77829b93df4635279662 (diff) | |
download | nextcloud-server-ec253f1354b6993cf204ee60ec87350119a3c91e.tar.gz nextcloud-server-ec253f1354b6993cf204ee60ec87350119a3c91e.zip |
Use strftime to format date with translated month names
Diffstat (limited to 'core/l10n/l10n-en.php')
-rw-r--r-- | core/l10n/l10n-en.php | 5 |
1 files changed, 5 insertions, 0 deletions
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' ); |