From 0db68c81230be304aa0c581b84bc35857320aa04 Mon Sep 17 00:00:00 2001
From: Ramiro Morales <cramm0@gmail.com>
Date: Thu, 29 Apr 2010 01:40:12 +0000
Subject: [PATCH] Refs #13047 and #12980 -- Fixed es_AR message format
 specifiers:
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

 * Reviewed them for missing backslash escaping characters.
 * Converted all of them to raw strings for consistency.
 * Made default 'long' output specifiers for dates and/or times more terse
   and so more suited to real local usage, trying to maintain backward
   compatiblity with the equally named pre 1.2 technical message IDs where
   possible.

Thanks to Fabián Ramirez for his work on this.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@13045 bcc190cf-cafb-0310-a4f2-bffc1f526a37
---
 django/conf/locale/es_AR/formats.py | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/django/conf/locale/es_AR/formats.py b/django/conf/locale/es_AR/formats.py
index e94edd6ba1..ac8c2eb14e 100644
--- a/django/conf/locale/es_AR/formats.py
+++ b/django/conf/locale/es_AR/formats.py
@@ -2,13 +2,13 @@
 # This file is distributed under the same license as the Django package.
 #
 
-DATE_FORMAT = 'j \\de F \\de Y'
-TIME_FORMAT = 'H:i:s'
-DATETIME_FORMAT = 'j \\de F \\de Y \\a \\l\\a\s H:i'
-YEAR_MONTH_FORMAT = 'F \\de Y'
-MONTH_DAY_FORMAT = 'j \\de F'
-SHORT_DATE_FORMAT = 'd/m/Y'
-SHORT_DATETIME_FORMAT = 'd/m/Y H:i'
+DATE_FORMAT = r'j N Y'
+TIME_FORMAT = r'H:i:s'
+DATETIME_FORMAT = r'j N Y H:i:s'
+YEAR_MONTH_FORMAT = r'F Y'
+MONTH_DAY_FORMAT = r'j \de F'
+SHORT_DATE_FORMAT = r'd/m/Y'
+SHORT_DATETIME_FORMAT = r'd/m/Y H:i'
 FIRST_DAY_OF_WEEK = 0 # 0: Sunday, 1: Monday
 DATE_INPUT_FORMATS = (
     '%d/%m/%Y', # '31/12/2009'