~ubuntuone-pqm-team/django/stable

« back to all changes in this revision

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

  • Committer: Matias Bordese
  • Date: 2014-08-21 21:22:40 UTC
  • Revision ID: matias.bordese@canonical.com-20140821212240-tij4ms6qzjbdiioz
Tags: 1.5.9
Imported Django 1.5.9 from released tarball.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# -*- encoding: utf-8 -*-
2
2
# This file is distributed under the same license as the Django package.
3
3
#
4
 
from __future__ import unicode_literals
5
4
 
6
5
# The *_FORMAT strings use the Django date format syntax,
7
6
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
22
21
)
23
22
DATETIME_INPUT_FORMATS = (
24
23
    '%d/%m/%Y %H:%M:%S',
25
 
    '%d/%m/%Y %H:%M:%S.%f',
26
24
    '%d/%m/%Y %H:%M',
27
25
    '%d/%m/%y %H:%M:%S',
28
 
    '%d/%m/%y %H:%M:%S.%f',
29
26
    '%d/%m/%y %H:%M',
30
27
)
31
28
DECIMAL_SEPARATOR = ','