This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Internationalization
You can use the Rails built in I18n framework to translate error messages.
Use samples like these in your locale configs:
en:
activerecord:
errors:
messages:
missing_image: is really required
invalid_image: seems to be broken
image_too_small: "seems to be too small, it needs to be {{minimum}} pixels"
They can also be set on a model level:
en:
activerecord:
errors:
models:
photo:
missing_image: needs to be attached
invalid_image: is broken
image_too_small: "is too small (should be >= {{minimum}})"
If no message is set in your locale, a default english one will be shown.






