swap backticks for double quotes

This commit is contained in:
Craig Blaszczyk 2015-01-07 18:22:30 +00:00
parent 91e316f781
commit 58ec7669ae
4 changed files with 12 additions and 12 deletions

View File

@ -52,7 +52,7 @@ class APIException(Exception):
# built in `ValidationError`. For example: # built in `ValidationError`. For example:
# #
# from rest_framework import serializers # from rest_framework import serializers
# raise serializers.ValidationError("Value was invalid") # raise serializers.ValidationError('Value was invalid')
class ValidationError(APIException): class ValidationError(APIException):
status_code = status.HTTP_400_BAD_REQUEST status_code = status.HTTP_400_BAD_REQUEST

View File

@ -477,7 +477,7 @@ class Field(object):
class BooleanField(Field): class BooleanField(Field):
default_error_messages = { default_error_messages = {
'invalid': _('`{input}` is not a valid boolean.') 'invalid': _('"{input}" is not a valid boolean.')
} }
default_empty_html = False default_empty_html = False
initial = False initial = False
@ -505,7 +505,7 @@ class BooleanField(Field):
class NullBooleanField(Field): class NullBooleanField(Field):
default_error_messages = { default_error_messages = {
'invalid': _('`{input}` is not a valid boolean.') 'invalid': _('"{input}" is not a valid boolean.')
} }
initial = None initial = None
TRUE_VALUES = set(('t', 'T', 'true', 'True', 'TRUE', '1', 1, True)) TRUE_VALUES = set(('t', 'T', 'true', 'True', 'TRUE', '1', 1, True))
@ -972,7 +972,7 @@ class TimeField(Field):
class ChoiceField(Field): class ChoiceField(Field):
default_error_messages = { default_error_messages = {
'invalid_choice': _('`{input}` is not a valid choice.') 'invalid_choice': _('"{input}" is not a valid choice.')
} }
def __init__(self, choices, **kwargs): def __init__(self, choices, **kwargs):
@ -1016,8 +1016,8 @@ class ChoiceField(Field):
class MultipleChoiceField(ChoiceField): class MultipleChoiceField(ChoiceField):
default_error_messages = { default_error_messages = {
'invalid_choice': _('`{input}` is not a valid choice.'), 'invalid_choice': _('"{input}" is not a valid choice.'),
'not_a_list': _('Expected a list of items but got type `{input_type}`.') 'not_a_list': _('Expected a list of items but got type "{input_type}".')
} }
default_empty_html = [] default_empty_html = []
@ -1118,7 +1118,7 @@ class ListField(Field):
child = None child = None
initial = [] initial = []
default_error_messages = { default_error_messages = {
'not_a_list': _('Expected a list of items but got type `{input_type}`.') 'not_a_list': _('Expected a list of items but got type "{input_type}".')
} }
def __init__(self, *args, **kwargs): def __init__(self, *args, **kwargs):

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-01-07 12:28+0000\n" "POT-Creation-Date: 2015-01-07 18:21+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -111,7 +111,7 @@ msgid "This field may not be null."
msgstr "" msgstr ""
#: fields.py:480 fields.py:508 #: fields.py:480 fields.py:508
msgid "`{input}` is not a valid boolean." msgid "\"{input}\" is not a valid boolean."
msgstr "" msgstr ""
#: fields.py:543 #: fields.py:543
@ -199,11 +199,11 @@ msgid "Time has wrong format. Use one of these formats instead: {format}."
msgstr "" msgstr ""
#: fields.py:975 fields.py:1019 #: fields.py:975 fields.py:1019
msgid "`{input}` is not a valid choice." msgid "\"{input}\" is not a valid choice."
msgstr "" msgstr ""
#: fields.py:1020 fields.py:1121 serializers.py:476 #: fields.py:1020 fields.py:1121 serializers.py:476
msgid "Expected a list of items but got type `{input_type}`." msgid "Expected a list of items but got type \"{input_type}\"."
msgstr "" msgstr ""
#: fields.py:1050 #: fields.py:1050

View File

@ -473,7 +473,7 @@ class ListSerializer(BaseSerializer):
many = True many = True
default_error_messages = { default_error_messages = {
'not_a_list': _('Expected a list of items but got type `{input_type}`.') 'not_a_list': _('Expected a list of items but got type "{input_type}".')
} }
def __init__(self, *args, **kwargs): def __init__(self, *args, **kwargs):