This is how my route looks like:
acc_long.type = Zend_Controller_Router_Route_Regex
acc_long.route = "@accommodation/([A-Za-z-]+)/([0-9A-Za-z-]+)-([0-9]+)"
acc_long.map.1 = 'location'
acc_long.map.2 = 'name'
acc_long.map.3 = 'id'
acc_long.defaults.controller = "accommodation"
acc_long.defaults.action = "index"
acc_long.defaults.module = "default"
acc_long.defaults.location = 'FALSE'
acc_long.defaults.name = 'FALSE'
acc_long.defaults.id = 'FALSE'
acc_long.reverse = "@accommodation/%s/%s-%d/"
But zend router doesn't translate it into a specific language, to german for example. I have all the translations available, and translation of routes is working fine in all routes except for Regex route?
Is there any way to translate it also?
Thank you very much!