We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/orgs/opral/discussions/3368#discussioncomment-11920702
A user needs to alias locales to turn paths like /en/page into /english/page for backwards compatibility.
/en/page
/english/page
Offer a strategy option to alias locales.
strategy: { // ... + localeAlias = { + en: "english", + de: "deutsch", + } }
The text was updated successfully, but these errors were encountered:
@d1d4r can you clarify if you want both locale and the alias to work, or just the alias?
both working
/en/page ✅ /english/page ✅
only alias working
/en/page 🔴 /english/page ✅
Sorry, something went wrong.
i just need alias, but if possible it's great work with both
I'll go for both working because then you can incrementally migrate to one or the other
@d1d4r please give feedback on #359 (comment)
No branches or pull requests
Context
https://github.com/orgs/opral/discussions/3368#discussioncomment-11920702
A user needs to alias locales to turn paths like
/en/page
into/english/page
for backwards compatibility.Proposal
Offer a strategy option to alias locales.
The text was updated successfully, but these errors were encountered: