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
on 2011-06-30 16:44
on 2011-06-30 17:08
en:
foo:
- "item one"
- "item two"
- "item three"
I18n.translate(:foo)
=> ["item one", "item two", "item three"]
- Martin
on 2011-06-30 17:08
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
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
Log in with Google account | Log in with Yahoo account
No account? Register here.