Forum: Rails I18n get an array from an I18n declaration?

Posted by patrick99e99 (Guest)
on 2011-06-30 16:44
(Received via mailing list)
Hi,

I am storing some text in a model that is separated by new lines, and
I wanted to offer some default text in case the records in the model
do not exist...  So I tried to emulate it by doing:

en:
  foo:
    item1\r\n
    item2\r\n
    item3\r\n

..  However, when I retrieve this, it shows up as item1\\r\\nitem2\\r\
\n

where the "\"s are escaped.......  So in order to split my string by
new lines, I have to do:
text.split(/\r\n|\\r\\n/), which I am not crazy about.

I was wondering if there is a simple way I can just make a list in
yaml so that when I do t(:foo), i will get ["item1", "item2",
"item3"] ?

thanks.

-patrick
Posted by Martin Svalin (Guest)
on 2011-06-30 17:08
(Received via mailing list)
en:
  foo:
    - "item one"
    - "item two"
    - "item three"

I18n.translate(:foo)
 => ["item one", "item two", "item three"]


- Martin
Posted by Henrik --- (malesca)
on 2011-06-30 17:08
(Received via mailing list)
Did you try the YAML docs or a quick search? Pretty sure it's
supported and shouldn't be hard to find.

Sent from my iPhone
Posted by patrick99e99 (Guest)
on 2011-06-30 19:39
(Received via mailing list)
awesome.. thanks!
Please log in before posting. Registration is free and takes only a minute.
Existing account (Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
No account? Register here.