Skip to content

Commit 63c12d1

Browse files
authored
Update locales to current master
Also added a reference to the associated `carrierwave-i18n` library.
1 parent c0ae645 commit 63c12d1

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

README.md

+13-4
Original file line numberDiff line numberDiff line change
@@ -901,19 +901,28 @@ mount_uploader :avatar, AvatarUploader, mount_on: :avatar_file_name
901901

902902
## I18n
903903

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
905905
your translations file:
906906

907907
```yaml
908908
errors:
909909
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
913913
extension_whitelist_error: "You are not allowed to upload %{extension} files, allowed types: %{allowed_types}"
914914
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}"
915921
```
916922
923+
The [`carrierwave-i18n`](https://github.com/carrierwaveuploader/carrierwave-i18n)
924+
library adds support for additional locales.
925+
917926
## Large files
918927

919928
By default, CarrierWave copies an uploaded file twice, first copying the file into the cache, then

0 commit comments

Comments
 (0)