如何在golang Revel框架中设置不同语言的路线?

in Node.js you can do something like app.get("/:someroute(sign-in|anmelden)") and you got yourself routes in different languages.

Can you do same in Golang Revel? Have routes defined like that with regex? or some other way of supporting routes in different languages without having code redundancies?

GET     /login                                  App.Login
GET     /anmelden                               App.Login

this two to be actually one route?