summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-02-03 04:44:00 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-02-03 04:44:00 +0000
commitc03b5c10917bca31bca0c09d0feb1790fd7c82dd (patch)
tree29ba91105290d0ae2b93b99b6285bc3b0fdd6458 /django
parent5a0d7223f55fd062f0613df52b717009bcd2368d (diff)
Fixed #6224 -- Small doc fixed for Argentinean localflavor. Thanks, Ramiro
Morales. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7077 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
-rw-r--r--django/contrib/localflavor/ar/forms.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/django/contrib/localflavor/ar/forms.py b/django/contrib/localflavor/ar/forms.py
index 6374a48c92..7827698e77 100644
--- a/django/contrib/localflavor/ar/forms.py
+++ b/django/contrib/localflavor/ar/forms.py
@@ -20,7 +20,7 @@ class ARProvinceSelect(Select):
class ARPostalCodeField(RegexField):
"""
- A field that accepts a `classic´ NNNN Postal Code or a CPA.
+ A field that accepts a 'classic' NNNN Postal Code or a CPA.
See http://www.correoargentino.com.ar/consulta_cpa/home.php
"""
@@ -44,7 +44,7 @@ class ARPostalCodeField(RegexField):
class ARDNIField(CharField):
"""
- A field that validates `Documento Nacional de Identidad´ (DNI) numbers.
+ A field that validates 'Documento Nacional de Identidad' (DNI) numbers.
"""
default_error_messages = {
'invalid': ugettext("This field requires only numbers."),
@@ -73,7 +73,7 @@ class ARDNIField(CharField):
class ARCUITField(RegexField):
"""
- This field validates a CUIT (Código Único de Identificación Tributaria). A
+ This field validates a CUIT (Código Único de Identificación Tributaria). A
CUIT is of the form XX-XXXXXXXX-V. The last digit is a check digit.
"""
default_error_messages = {