I have encountered this myself, and one solution is to deal with through
routing, for example:

org_view_en:
  url: /organization/view
  param: {module: organization, action: view }

org_view_hu:
  url: /szervezet/megnez
  param: {module: organization, action: view }

Whenever you link, you have to use named rules: link_to('link-title',
'@org_view_'.$culture);

Don't know if there's an easier way, but this works. And you get the benefit
of increased performance through named rules.

-g


On 04/02/2008, pihentagy <[EMAIL PROTECTED]> wrote:
>
>
> Hi!
>
> I'd like to know, wheter I can fully localize the url of a project
> consisting more applications.
> So, if I have an url like: http://mydomain.com/organization/view and I
> would like to localize it for Hungary, I'd like to have
> http://mydomain.hu/szervezet/megnez. Furthermore, I'd like to have
> this translations in all links, and there could be also links between
> different applications. Is this possible somehow?
>
> thanks
> Gergo
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to