Is there support to somehow automate the localization of web pages in
Rails? I need to create an application that must allow the user to
dynamically switch between several languages – luckily, all of them
left-to-right languages.
Most guides and books do not even mention that issue and assume everyone
is using English. Are there any guides or documentation about how to
best do this?
Is there support to somehow automate the localization of web pages in
Rails? I need to create an application that must allow the user to
dynamically switch between several languages – luckily, all of them
left-to-right languages.
Most guides and books do not even mention that issue and assume everyone
is using English. Are there any guides or documentation about how to
best do this?
Roman
gem install localization_generator
edit envrionments.rb, application.rb (as per docs)
Is there support to somehow automate the localization of web pages in
Rails? I need to create an application that must allow the user to
dynamically switch between several languages – luckily, all of them
left-to-right languages.
Most guides and books do not even mention that issue and assume everyone
is using English. Are there any guides or documentation about how to
best do this?
Roman
gem install localization_generator
edit envrionments.rb, application.rb (as per docs)
done
Thanks for the info … is there also a way to localize the messages
that are generated by validates… and which appear in the flash? Not
sure if there are any other messages that rails will show to the user
eventually, but I would need to localize all of them.
Is there support to somehow automate the localization of web pages in
Rails? I need to create an application that must allow the user to
dynamically switch between several languages – luckily, all of them
left-to-right languages.
Most guides and books do not even mention that issue and assume everyone
is using English. Are there any guides or documentation about how to
best do this?