full translate for AddProfile pages 28%
This commit is contained in:
parent
c5985f2954
commit
f81a8c264c
@ -34,6 +34,9 @@
|
|||||||
"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"
|
"edit_pseudo": "Edit pseudo",
|
||||||
|
"password":"Password",
|
||||||
|
"enter_password": "Enter the passord",
|
||||||
|
"password_confirmed": "Password confirmed"
|
||||||
|
|
||||||
}
|
}
|
@ -34,6 +34,8 @@
|
|||||||
"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"
|
"edit_pseudo": "Modifier le pseudo",
|
||||||
|
"password":"Mot de passe",
|
||||||
|
"enter_password": "Entrez le password"
|
||||||
|
|
||||||
}
|
}
|
@ -216,8 +216,11 @@ class _AddProfileState extends State<AddProfile> with ShowAlertDialog {
|
|||||||
obscureText: true,
|
obscureText: true,
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
border: OutlineInputBorder(),
|
border: OutlineInputBorder(),
|
||||||
labelText: 'Mot de passe',
|
labelText: AppLocalizations.of(context)?.password ??
|
||||||
hintText: 'Entrez le mot de passe'),
|
'Password',
|
||||||
|
hintText:
|
||||||
|
AppLocalizations.of(context)?.enter_password ??
|
||||||
|
'Enter the password'),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Padding(
|
Padding(
|
||||||
@ -229,9 +232,14 @@ class _AddProfileState extends State<AddProfile> with ShowAlertDialog {
|
|||||||
validator: (value) => _validateField(value),
|
validator: (value) => _validateField(value),
|
||||||
obscureText: true,
|
obscureText: true,
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
border: OutlineInputBorder(),
|
border: OutlineInputBorder(),
|
||||||
labelText: 'Confirmez le mot de passe',
|
labelText:
|
||||||
hintText: 'Confirmez le mot de passe'),
|
AppLocalizations.of(context)?.password_confirmed ??
|
||||||
|
'Password confirmed',
|
||||||
|
hintText:
|
||||||
|
AppLocalizations.of(context)?.password_confirmed ??
|
||||||
|
'Password confirmed',
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Padding(
|
Padding(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user