Browse Source

[FIX] base_multi_image - Make validation error messages translatable

12.0-mig-module_prototyper_last
sebalix 8 years ago
committed by Vladislav Shepilov
parent
commit
39437f51e2
  1. 8
      base_multi_image/models/image.py

8
base_multi_image/models/image.py

@ -175,22 +175,22 @@ class Image(models.Model):
def _check_url(self):
if self.storage == 'url' and not self.url:
raise exceptions.ValidationError(
'You must provide an URL for the image.')
_('You must provide an URL for the image.'))
@api.constrains('storage', 'path')
def _check_path(self):
if self.storage == 'file' and not self.path:
raise exceptions.ValidationError(
'You must provide a file path for the image.')
_('You must provide a file path for the image.'))
@api.constrains('storage', 'file_db_store')
def _check_store(self):
if self.storage == 'db' and not self.file_db_store:
raise exceptions.ValidationError(
'You must provide an attached file for the image.')
_('You must provide an attached file for the image.'))
@api.constrains('storage', 'attachment_id')
def _check_store(self):
if self.storage == 'filestore' and not self.attachment_id:
raise exceptions.ValidationError(
'You must provide an attachment for the image.')
_('You must provide an attachment for the image.'))
Loading…
Cancel
Save