How can I add parameters to my parametrized and internationalized error message? Say, in my controller there's:
flash[:error] = t(:error)[:my_error_message]
And in en.yml:
error:
my_error_message: "This is the problem XXX already."
For your flash message,
flash[:error] = t('my_error_message', :problem => 'Big Problem')
In your en.yml:
error:
my_error_message: "This is the problem %{problem} already."
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With