[Frontend]: Add Text Localization To All The Pages
Mayank0255 opened this issue · 3 comments
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Describe the solution you'd like
A clear and concise description of what you want to happen.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
Do you have any plan how it should be done?
Do you have any plan how it should be done?
While inserting to db, the language should be english, so that in our db we have data in one language. Then, while fetching the data, it should be localized based on the users location (if possible, otherwise by default english is fine). Then give them a dropdown inside the profile section to change the language.
Two ways,
- We will keep the language preference in our db, then while returning the response of the APIs, we will convert. This will though induce some added time to the response time.
- We keep the language preference, then on frontend we convert the text through some library.
@Mayank0255
Do you have any plan how it should be done?While inserting to db, the language should be english, so that in our db we have data in one language. Then, while fetching the data, it should be localized based on the users location (if possible, otherwise by default english is fine). Then give them a dropdown inside the profile section to change the language.
Two ways,
- We will keep the language preference in our db, then while returning the response of the APIs, we will convert. This will though induce some added time to the response time.
- We keep the language preference, then on frontend we convert the text through some library.
This looks like you want localization to all user data also or can you clear if you want to localize the frontend UI only.