say I have:
locales/file1.yml
en:
foo:
- bar
locales/file2.yml
en:
foo:
- baz
I want to be able to call t("foo") and get ["bar", "baz"].. Is there
any way to do this?
-patrick
on 2011-11-02 00:18
on 2011-11-02 06:10
Yaml returns string only. So, I guess what you can do use
foo:
'bar baz'
and then f('foo').split(' ')
it's hack, but i don't see other option.
On Wed, Nov 2, 2011 at 4:47 AM, patrick99e99 <patrick99e99@gmail.com>
wrote:
> - baz
> To unsubscribe from this group, send email to
> rails-i18n+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/rails-i18n?hl=en.
>
>
--
Ratnadeep Deshmane.
http://rtdptech.com
on 2011-11-02 10:14
This should do it : foo: - bar - baz You can't keep each array entry in a separate file because you'll redefine the whole 'foo' scope every time.
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.