Fixed #2817 -- Fixed formatting problem in admin help string. Thanks,
Maximillian Dornseif. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3848 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
9b034d2746
commit
789f30258a
|
@ -618,7 +618,7 @@ class ManyToManyField(RelatedField, Field):
|
||||||
msg = gettext_lazy('Separate multiple IDs with commas.')
|
msg = gettext_lazy('Separate multiple IDs with commas.')
|
||||||
else:
|
else:
|
||||||
msg = gettext_lazy('Hold down "Control", or "Command" on a Mac, to select more than one.')
|
msg = gettext_lazy('Hold down "Control", or "Command" on a Mac, to select more than one.')
|
||||||
self.help_text = string_concat(self.help_text, msg)
|
self.help_text = string_concat(self.help_text, ' ', msg)
|
||||||
|
|
||||||
def get_manipulator_field_objs(self):
|
def get_manipulator_field_objs(self):
|
||||||
if self.rel.raw_id_admin:
|
if self.rel.raw_id_admin:
|
||||||
|
|
Loading…
Reference in New Issue