I'm looking at Arcanist for a project which needs to create multilingual routes to support different locales. For example, I'd need something like:
/en/forms/profile/1/about-me
/fr/formulaires/profil/1/a-propos
Is there a way to override the default registerRoutes method to handle multilingual routes? My project uses Laravel Multilingual Routes, but I think any solution to this use case in Arcanist should be as agnostic as possible. Perhaps an option might be to allow an integrator to bypass Arcanist's automatic registration of routes and document the process for creating all necessary routes independently in a routes/arcanist.php file or something like that.
I'm looking at Arcanist for a project which needs to create multilingual routes to support different locales. For example, I'd need something like:
/en/forms/profile/1/about-me/fr/formulaires/profil/1/a-proposIs there a way to override the default
registerRoutesmethod to handle multilingual routes? My project uses Laravel Multilingual Routes, but I think any solution to this use case in Arcanist should be as agnostic as possible. Perhaps an option might be to allow an integrator to bypass Arcanist's automatic registration of routes and document the process for creating all necessary routes independently in aroutes/arcanist.phpfile or something like that.