when our app sends SMS messages, we'd like to give users the option to specify their preferred language.
Using Spanish as an example, I see how to add a new locale yml file to config/locales.
And I see how to replace any hardcoded strings such as "text STOP to opt-out" with :stop_opt_out in my app.
what I don't see is how to select the language used on a user-by-user basis.
specifically if my code is currently:
msg_out = "Thank you!"
and after internationalization I have :thank_you defined in multiple locale yml files
and if in my user record I have user.locale = "en" or "sp" (or should I enumerate locales 0,1,2?)
how would I do a user specific
msg_out = t :thank_you
that would apply to every message created for that user in the current session?