mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	Fixes #2965 -- Added i18n for joiner used in validation error messages. Thanks, ramiro.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3949 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -303,7 +303,7 @@ def manipulator_validator_unique_together(field_name_list, opts, self, field_dat | |||||||
|         pass |         pass | ||||||
|     else: |     else: | ||||||
|         raise validators.ValidationError, _("%(object)s with this %(type)s already exists for the given %(field)s.") % \ |         raise validators.ValidationError, _("%(object)s with this %(type)s already exists for the given %(field)s.") % \ | ||||||
|             {'object': capfirst(opts.verbose_name), 'type': field_list[0].verbose_name, 'field': get_text_list([f.verbose_name for f in field_list[1:]], 'and')} |             {'object': capfirst(opts.verbose_name), 'type': field_list[0].verbose_name, 'field': get_text_list([f.verbose_name for f in field_list[1:]], _('and'))} | ||||||
|  |  | ||||||
| def manipulator_validator_unique_for_date(from_field, date_field, opts, lookup_type, self, field_data, all_data): | def manipulator_validator_unique_for_date(from_field, date_field, opts, lookup_type, self, field_data, all_data): | ||||||
|     from django.db.models.fields.related import ManyToOneRel |     from django.db.models.fields.related import ManyToOneRel | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user