is there a solution to make the app in french ? or change the application language.

I want to make the saas app in french is there suggestions for solutions
5 Replies
kapa.ai
kapa.ai6d ago
Hi @LifeTaker. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave: ---------------------- Je comprends votre souhait de créer une application SaaS en français avec Wasp. Malheureusement, d'après les informations dont je dispose, Wasp ne propose pas actuellement de solution intégrée pour changer la langue de l'application ou la localiser en français. Cependant, il existe quelques options que vous pourriez envisager : 1. Vous pouvez personnaliser manuellement le contenu textuel de votre application en français lors du développement de vos composants React et de votre logique côté serveur. 2. Il est possible d'ajouter des balises meta ou des scripts supplémentaires dans la section head de votre application pour prendre en charge la langue française. Par exemple, vous pouvez spécifier la langue de votre document HTML comme ceci :
app myApp {
wasp: {
version: "^0.13.0"
},
title: "Mon Application en Français",
head: [
"<meta charset=\"UTF-8\">",
"<meta name=\"language\" content=\"fr\">",
"<html lang=\"fr\">"
]
}
app myApp {
wasp: {
version: "^0.13.0"
},
title: "Mon Application en Français",
head: [
"<meta charset=\"UTF-8\">",
"<meta name=\"language\" content=\"fr\">",
"<html lang=\"fr\">"
]
}
Cette approche est décrite dans la documentation sur la personnalisation de l'application (https://wasp-lang.dev/docs/project/customizing-app). 3. Pour une solution plus complète de localisation, vous devrez probablement intégrer une bibliothèque de traduction tierce pour React, comme react-i18next, et l'implémenter manuellement dans votre projet Wasp. Gardez à l'esprit que Wasp est en développement actif et que le support pour différentes langues pourrait être amélioré dans les futures versions. Si cette fonctionnalité est importante pour vous, vous pourriez envisager de créer une demande de fonctionnalité sur le dépôt GitHub de Wasp. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ---------------------- Sorry @LifeTaker, I seem to be having a bit of trouble. Don't worry though, I've pinged my support and they will try to fix me up! :technologist: Perhaps try again in 15mins?
miho
miho5d ago
Wasp currently doesn't support out of the box internationalisation, but the good news is that 99% of the Open Saas template is simple to translate. The only part you can't really translate are the auth screens and the errors. Related issue: https://github.com/wasp-lang/wasp/issues/2061
LifeTaker
LifeTakerOP5d ago
can u like suggest me a solution or somehting u think it might work, i will be happy to help the team for that, for the auth pages
MEE6
MEE65d ago
Wohooo @LifeTaker, you just became a Waspeteer level 2!
LifeTaker
LifeTakerOP5d ago
for now i will be using use effect to capture the words and translate them i guess
Want results from more Discord servers?
Add your server