> de:
> path_names:
> flights: "fluege"
> flights_from: "fluege-von"
> world: "welt"
> region: "region"
> ...
I think that if you want to use named paths, you should have a yml like so :
de:
named_routes_path:
flights: "fluege"
flights_from: "fluege-von"
world: "welt"
region: "region"
...
> So in many examples there are rows like this, which obviously
> translate controllers.
> "map.welcome 'welcome', :controller => 'pages', :action => 'welcome'"
> But i dont know how i use this for my purpose. What is in this case
> map.welcome?
> What is the String 'welcome' ?
> I used it like this
> map.flights 'flights, :controller => 'fluege', :action => 'index'
There is an ' missing after the second flights occurrence, but this may be a typo.
This should work if your flights controller is really named fluege and not flights.
HTH
@lex