diff options
| author | Jannis Leidel <jannis@leidel.info> | 2010-05-07 18:53:19 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2010-05-07 18:53:19 +0000 |
| commit | 0b25cebcc6466d02044533db3c569636998231bb (patch) | |
| tree | 1b272f1d4360748939a4fbae9bb68a83e061fe7b | |
| parent | b4f82b161fded3fde2d41137feb9348474b8db4a (diff) | |
Added preliminary Bosnian formats.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13121 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/conf/locale/bs/__init__.py | 0 | ||||
| -rw-r--r-- | django/conf/locale/bs/formats.py | 18 |
2 files changed, 18 insertions, 0 deletions
diff --git a/django/conf/locale/bs/__init__.py b/django/conf/locale/bs/__init__.py new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/django/conf/locale/bs/__init__.py diff --git a/django/conf/locale/bs/formats.py b/django/conf/locale/bs/formats.py new file mode 100644 index 0000000000..fc21ff82ac --- /dev/null +++ b/django/conf/locale/bs/formats.py @@ -0,0 +1,18 @@ +# -*- encoding: utf-8 -*- +# This file is distributed under the same license as the Django package. +# + +DATE_FORMAT = 'j. N Y.' +TIME_FORMAT = 'G:i' +DATETIME_FORMAT = 'j. N. Y. G:i T' +YEAR_MONTH_FORMAT = 'F Y.' +MONTH_DAY_FORMAT = 'j. F' +SHORT_DATE_FORMAT = 'Y M j' +# SHORT_DATETIME_FORMAT = +# FIRST_DAY_OF_WEEK = +# DATE_INPUT_FORMATS = +# TIME_INPUT_FORMATS = +# DATETIME_INPUT_FORMATS = +DECIMAL_SEPARATOR = ',' +THOUSAND_SEPARATOR = '.' +# NUMBER_GROUPING = |
