How to change languages on FrontEnd?
Should we load all the content coming from backend (post in all languages) ? Probably not since this is not maintainable when having more languages. Probably better solution is to adjust API backend for language-specific queryies.
How to solve the issue with SLUGs on backend? Currently the slug is saved in other languages in the same way. This could affect SEO and UX since Polish Users won't understand slugs in English or Spanish etc.
Translating slugs on saving using some Python libraries on backend?
Using UUID for each post and querying a post details not based on slugified URL?
How to change the language ? Send API requests for current page for a new language content on each language change?
The main problems to solve are:
How to change languages on FrontEnd? Should we load all the content coming from backend (post in all languages) ? Probably not since this is not maintainable when having more languages. Probably better solution is to adjust API backend for language-specific queryies.
How to solve the issue with SLUGs on backend? Currently the slug is saved in other languages in the same way. This could affect SEO and UX since Polish Users won't understand slugs in English or Spanish etc.
How to change the language ? Send API requests for current page for a new language content on each language change?
How to maintain Language preferences in the App?