feature/internationale #46

Merged
v4l3n71n merged 38 commits from feature/internationale into main 2025-08-06 20:38:37 +00:00
10 changed files with 261 additions and 48 deletions
Showing only changes of commit c5985f2954 - Show all commits

View File

@@ -33,5 +33,7 @@
"internal_error_server": "Internal error server", "internal_error_server": "Internal error server",
"unknown_error_auth": "Unknown error authentification", "unknown_error_auth": "Unknown error authentification",
"required_input": "Required input", "required_input": "Required input",
"create_profile": "Create profile" "create_profile": "Create profile",
"edit_pseudo": "Edit pseudo"
} }

View File

@@ -33,6 +33,7 @@
"internal_error_server": "Erreur interne de serveur", "internal_error_server": "Erreur interne de serveur",
"unknown_error_auth": "Problème d'authentification inconnu", "unknown_error_auth": "Problème d'authentification inconnu",
"required_input": "Champ requis", "required_input": "Champ requis",
"create_profile": "Creation profil" "create_profile": "Creation profil",
"edit_pseudo": "Modifier le pseudo"
} }

View File

@@ -202,7 +202,8 @@ class _AddProfileState extends State<AddProfile> with ShowAlertDialog {
decoration: InputDecoration( decoration: InputDecoration(
border: OutlineInputBorder(), border: OutlineInputBorder(),
labelText: 'Pseudo', labelText: 'Pseudo',
hintText: 'Modifier le pseudo'), hintText: AppLocalizations.of(context)?.edit_pseudo ??
'Edit pseudo'),
), ),
), ),
Padding( Padding(