Ticket #12980: 12980-r13045.diff

File 12980-r13045.diff, 3.8 KB (added by Ramiro Morales, 14 years ago)

loewis' patch updated to post [13039] and [13045].

  • django/conf/locale/ca/formats.py

    diff --git a/django/conf/locale/ca/formats.py b/django/conf/locale/ca/formats.py
    a b  
    22# This file is distributed under the same license as the Django package.
    33#
    44
    5 DATE_FORMAT = 'j \de F \de Y'
     5DATE_FORMAT = r'j \de F \de Y'
    66TIME_FORMAT = 'G:i:s'
    7 DATETIME_FORMAT = 'j \de F \de Y \\a \le\s G:i'
    8 YEAR_MONTH_FORMAT = 'F \de\l Y'
    9 MONTH_DAY_FORMAT = 'j \de F'
     7DATETIME_FORMAT = r'j \de F \de Y \a \le\s G:i'
     8YEAR_MONTH_FORMAT = r'F \de\l Y'
     9MONTH_DAY_FORMAT = r'j \de F'
    1010SHORT_DATE_FORMAT = 'd/m/Y'
    1111SHORT_DATETIME_FORMAT = 'd/m/Y G:i'
    1212FIRST_DAY_OF_WEEK = 1 # Monday
  • django/conf/locale/es/formats.py

    diff --git a/django/conf/locale/es/formats.py b/django/conf/locale/es/formats.py
    a b  
    22# This file is distributed under the same license as the Django package.
    33#
    44
    5 DATE_FORMAT = 'j \de F \de Y'
     5DATE_FORMAT = r'j \de F \de Y'
    66TIME_FORMAT = 'H:i:s'
    7 DATETIME_FORMAT = 'j \de F \de Y \a \l\a\s H:i'
    8 YEAR_MONTH_FORMAT = 'F \de Y'
    9 MONTH_DAY_FORMAT = 'j \de F'
     7DATETIME_FORMAT = r'j \de F \de Y \a \l\a\s H:i'
     8YEAR_MONTH_FORMAT = r'F \de Y'
     9MONTH_DAY_FORMAT = r'j \de F'
    1010SHORT_DATE_FORMAT = 'd/m/Y'
    1111SHORT_DATETIME_FORMAT = 'd/m/Y H:i'
    1212FIRST_DAY_OF_WEEK = 1 # Monday
  • django/conf/locale/eu/formats.py

    diff --git a/django/conf/locale/eu/formats.py b/django/conf/locale/eu/formats.py
    a b  
    22# This file is distributed under the same license as the Django package.
    33#
    44
    5 DATE_FORMAT = 'Yeko M\re\n d\a'
     5DATE_FORMAT = r'Yeko M\re\n d\a'
    66TIME_FORMAT = 'H:i:s'
    77# DATETIME_FORMAT =
    88# YEAR_MONTH_FORMAT =
  • django/conf/locale/lt/formats.py

    diff --git a/django/conf/locale/lt/formats.py b/django/conf/locale/lt/formats.py
    a b  
    22# This file is distributed under the same license as the Django package.
    33#
    44
    5 DATE_FORMAT = 'Y \m. F j \d.'
     5DATE_FORMAT = r'Y \m. F j \d.'
    66TIME_FORMAT = 'H:i:s'
    77# DATETIME_FORMAT =
    88# YEAR_MONTH_FORMAT =
  • django/conf/locale/lv/formats.py

    diff --git a/django/conf/locale/lv/formats.py b/django/conf/locale/lv/formats.py
    a b  
    22# This file is distributed under the same license as the Django package.
    33#
    44
    5 DATE_FORMAT = 'Y. \g\a\d\a j. F'
     5DATE_FORMAT = r'Y. \g\a\d\a j. F'
    66TIME_FORMAT = 'H:i:s'
    77# DATETIME_FORMAT =
    8 YEAR_MONTH_FORMAT = 'Y. \g. F'
     8YEAR_MONTH_FORMAT = r'Y. \g. F'
    99MONTH_DAY_FORMAT = 'j. F'
    10 SHORT_DATE_FORMAT = 'Y. \g\a\d\a j. M'
     10SHORT_DATE_FORMAT = r'Y. \g\a\d\a j. M'
    1111# SHORT_DATETIME_FORMAT =
    1212# FIRST_DAY_OF_WEEK =
    1313# DATE_INPUT_FORMATS =
  • django/conf/locale/pt/formats.py

    diff --git a/django/conf/locale/pt/formats.py b/django/conf/locale/pt/formats.py
    a b  
    22# This file is distributed under the same license as the Django package.
    33#
    44
    5 DATE_FORMAT = 'j \de F \de Y'
     5DATE_FORMAT = r'j \de F \de Y'
    66TIME_FORMAT = 'H:i:s'
    77# DATETIME_FORMAT =
    8 YEAR_MONTH_FORMAT = 'F \de Y'
    9 MONTH_DAY_FORMAT = 'j \de F'
     8YEAR_MONTH_FORMAT = r'F \de Y'
     9MONTH_DAY_FORMAT = r'j \de F'
    1010SHORT_DATE_FORMAT = 'd/m/Y'
    1111# SHORT_DATETIME_FORMAT =
    1212# FIRST_DAY_OF_WEEK =
  • django/conf/locale/vi/formats.py

    diff --git a/django/conf/locale/vi/formats.py b/django/conf/locale/vi/formats.py
    a b  
    22# This file is distributed under the same license as the Django package.
    33#
    44
    5 DATE_FORMAT = '\N\gà\y d \t\há\n\g n \nă\m Y'
     5DATE_FORMAT = r'\N\gà\y d \t\há\n\g n \nă\m Y'
    66TIME_FORMAT = 'H:i:s'
    7 DATETIME_FORMAT = 'H:i:s \N\gà\y d \t\há\n\g n \nă\m Y'
     7DATETIME_FORMAT = r'H:i:s \N\gà\y d \t\há\n\g n \nă\m Y'
    88YEAR_MONTH_FORMAT = 'F Y'
    99MONTH_DAY_FORMAT = 'j F'
    1010SHORT_DATE_FORMAT = 'd-m-Y'
Back to Top