I'm using the radio_button form tag in my project, and I just recently
switched to using i18n. I would like all of my database entries to be in
english so I can parse evertyhing quickly, yet the code below doesn't
quite work:

<%= f.radio_button("part_of_speech", ["#{t 'noun'}",
"Noun"]) %>

Produces part_of_speech" "NounNoun", If the user is using french it
shows up as "NomNoun". I Want the #{t 'noun'} to show to the user, but
only the 'Noun' to be sent to my controller, how can I do this? I would
post into the I18n section, but its much less read, and this is less an
issue with i18n, and more with how to make this work as expected:

f.radio_button("foo", ["show me","send me"]
-- 
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to