~ubuntu-branches/ubuntu/saucy/python-django/saucy-updates

« back to all changes in this revision

Viewing changes to django/conf/locale/da/formats.py

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb
  • Date: 2010-05-21 07:52:55 UTC
  • mfrom: (1.3.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 28.
  • Revision ID: james.westby@ubuntu.com-20100521075255-ii78v1dyfmyu3uzx
Tags: upstream-1.2
ImportĀ upstreamĀ versionĀ 1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
# This file is distributed under the same license as the Django package.
 
3
#
 
4
 
 
5
DATE_FORMAT = 'j. F Y'
 
6
TIME_FORMAT = 'H:i'
 
7
DATETIME_FORMAT = 'j. F Y H:i'
 
8
YEAR_MONTH_FORMAT = 'F Y'
 
9
MONTH_DAY_FORMAT = 'j. F'
 
10
SHORT_DATE_FORMAT = 'd.m.Y'
 
11
SHORT_DATETIME_FORMAT = 'd.m.Y H:i'
 
12
FIRST_DAY_OF_WEEK = 1
 
13
DATE_INPUT_FORMATS = (
 
14
    '%d.%m.%Y',                         # '25.10.2006'
 
15
)
 
16
TIME_INPUT_FORMATS = (
 
17
    '%H:%M:%S',                         # '14:30:59'
 
18
    '%H:%M',                            # '14:30'
 
19
)
 
20
DATETIME_INPUT_FORMATS = (
 
21
    '%d.%m.%Y %H:%M:%S',                # '25.10.2006 14:30:59'
 
22
    '%d.%m.%Y %H:%M',                   # '25.10.2006 14:30'
 
23
)
 
24
DECIMAL_SEPARATOR = ','
 
25
THOUSAND_SEPARATOR = '.'
 
26
NUMBER_GROUPING = 3