@@ -901,19 +901,28 @@ mount_uploader :avatar, AvatarUploader, mount_on: :avatar_file_name
901
901
902
902
## I18n
903
903
904
- The Active Record validations use the Rails i18n framework. Add these keys to
904
+ The Active Record validations use the Rails ` i18n ` framework. Add these keys to
905
905
your translations file:
906
906
907
907
``` yaml
908
908
errors :
909
909
messages :
910
- carrierwave_processing_error : " Cannot resize image. "
911
- carrierwave_integrity_error : " Not an image. "
912
- carrierwave_download_error : " Couldn't download image. "
910
+ carrierwave_processing_error : failed to be processed
911
+ carrierwave_integrity_error : is not of an allowed file type
912
+ carrierwave_download_error : could not be downloaded
913
913
extension_whitelist_error : " You are not allowed to upload %{extension} files, allowed types: %{allowed_types}"
914
914
extension_blacklist_error : " You are not allowed to upload %{extension} files, prohibited types: %{prohibited_types}"
915
+ content_type_whitelist_error : " You are not allowed to upload %{content_type} files"
916
+ content_type_blacklist_error : " You are not allowed to upload %{content_type} files"
917
+ rmagick_processing_error : " Failed to manipulate with rmagick, maybe it is not an image?"
918
+ mini_magick_processing_error : " Failed to manipulate with MiniMagick, maybe it is not an image? Original Error: %{e}"
919
+ min_size_error : " File size should be greater than %{min_size}"
920
+ max_size_error : " File size should be less than %{max_size}"
915
921
` ` `
916
922
923
+ The [` carrierwave-i18n`](https://github.com/carrierwaveuploader/carrierwave-i18n)
924
+ library adds support for additional locales.
925
+
917
926
# # Large files
918
927
919
928
By default, CarrierWave copies an uploaded file twice, first copying the file into the cache, then
0 commit comments