vote up 1 vote down star

I want to create my app using spanish controllers/methods.

can I use scaffold?

scaffold created methods like new, create, edit, etc

I want to change those to be nueva, crear, editar, etc

when I do that the app breaks because of REST routing rules

whats my best approach to this? please help.

flag

66% accept rate

3 Answers

vote up 1 vote down check

Just customize the resources on routes.rb by using :path_names.

link|flag
vote up 2 vote down

Why not keep English method names and use localized URLs instead? A lot of things in Rails depend on naming conventions, it's going to be unpractically expensive to change them.

When changing just URLs the routes.rb is the only module affected. If you change method names, you need to adjust routes, controllers and replace auto-generated URL helpers with hand-written ones.

link|flag
vote up 0 vote down

You are better off coding your app using english names for everything and then just translate what the user will see: i.e., use Rails i18n for translating your views. As for routes, this plugin works just fine.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.