Skip to content

WIP: erp5_web: introduce translatable path.

Kazuhiko Shiozaki requested to merge translatable_path_master into master

If /help/ Web Section has translation : {'de': 'hilfe', 'fr': 'aide'}, this section can be accessible by the following path :

  • /de/hilfe/
  • /fr/aide/

Also access to non-translated paths will be redirected like (for GET method) :

  • /de/help/* => /de/hilfe/*
  • /fr/help/* => /fr/aide/*

Merge request reports