full translate for AddProfile pages 100%
This commit is contained in:
parent
f81a8c264c
commit
26372368b2
@ -37,6 +37,16 @@
|
|||||||
"edit_pseudo": "Edit pseudo",
|
"edit_pseudo": "Edit pseudo",
|
||||||
"password":"Password",
|
"password":"Password",
|
||||||
"enter_password": "Enter the passord",
|
"enter_password": "Enter the passord",
|
||||||
"password_confirmed": "Password confirmed"
|
"password_confirmed": "Password confirmed",
|
||||||
|
"last_name": "Last name",
|
||||||
|
"first_name": "First name",
|
||||||
|
"email": "Mail",
|
||||||
|
"edit_last_name": "Edit name",
|
||||||
|
"edit_first_name": "Edit first name",
|
||||||
|
"edit_email": "Edit email address",
|
||||||
|
"birth_date": "Birth date",
|
||||||
|
"edit_birth": "Edit birth date",
|
||||||
|
"create_profile_button": "Create profile"
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
@ -36,6 +36,16 @@
|
|||||||
"create_profile": "Creation profil",
|
"create_profile": "Creation profil",
|
||||||
"edit_pseudo": "Modifier le pseudo",
|
"edit_pseudo": "Modifier le pseudo",
|
||||||
"password":"Mot de passe",
|
"password":"Mot de passe",
|
||||||
"enter_password": "Entrez le password"
|
"enter_password": "Entrez le password",
|
||||||
|
"password_confirmed": "Confirmez le mot de passe",
|
||||||
|
"last_name": "Nom",
|
||||||
|
"first_name": "Prénom",
|
||||||
|
"email": "Email",
|
||||||
|
"edit_last_name": "Modifier le nom",
|
||||||
|
"edit_first_name": "Modifier le prénom",
|
||||||
|
"edit_email": "Modifier l'email",
|
||||||
|
"birth_date": "Date de naissance",
|
||||||
|
"edit_birth": "Modifier la date de naissance",
|
||||||
|
"create_profile_button": "Créer le profil"
|
||||||
|
|
||||||
}
|
}
|
@ -251,8 +251,11 @@ class _AddProfileState extends State<AddProfile> with ShowAlertDialog {
|
|||||||
validator: (value) => _validateField(value),
|
validator: (value) => _validateField(value),
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
border: OutlineInputBorder(),
|
border: OutlineInputBorder(),
|
||||||
labelText: 'Nom',
|
labelText: AppLocalizations.of(context)?.last_name ??
|
||||||
hintText: 'Modifier le nom'),
|
'Last name',
|
||||||
|
hintText:
|
||||||
|
AppLocalizations.of(context)?.edit_last_name ??
|
||||||
|
'Edit last name'),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Padding(
|
Padding(
|
||||||
@ -264,8 +267,11 @@ class _AddProfileState extends State<AddProfile> with ShowAlertDialog {
|
|||||||
validator: (value) => _validateField(value),
|
validator: (value) => _validateField(value),
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
border: OutlineInputBorder(),
|
border: OutlineInputBorder(),
|
||||||
labelText: 'Prénom',
|
labelText: AppLocalizations.of(context)?.first_name ??
|
||||||
hintText: 'Modifier le prénom'),
|
'First name',
|
||||||
|
hintText:
|
||||||
|
AppLocalizations.of(context)?.edit_first_name ??
|
||||||
|
'Edit first name'),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Padding(
|
Padding(
|
||||||
@ -277,8 +283,10 @@ class _AddProfileState extends State<AddProfile> with ShowAlertDialog {
|
|||||||
validator: (value) => _validateField(value),
|
validator: (value) => _validateField(value),
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
border: OutlineInputBorder(),
|
border: OutlineInputBorder(),
|
||||||
labelText: 'Email',
|
labelText:
|
||||||
hintText: 'Modifier l\'adresse mail'),
|
AppLocalizations.of(context)?.email ?? 'Email',
|
||||||
|
hintText: AppLocalizations.of(context)?.edit_email ??
|
||||||
|
'Edit email'),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Padding(
|
Padding(
|
||||||
@ -291,8 +299,10 @@ class _AddProfileState extends State<AddProfile> with ShowAlertDialog {
|
|||||||
validator: (value) => _validateField(value),
|
validator: (value) => _validateField(value),
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
border: OutlineInputBorder(),
|
border: OutlineInputBorder(),
|
||||||
labelText: 'Date de naissance',
|
labelText: AppLocalizations.of(context)?.birth_date ??
|
||||||
hintText: 'Cliquez ici pour selectionner une date'),
|
'Birth date',
|
||||||
|
hintText: AppLocalizations.of(context)?.edit_birth ??
|
||||||
|
'Edit birth date'),
|
||||||
onTap: () => onTapFunctionDatePicker(context: context)),
|
onTap: () => onTapFunctionDatePicker(context: context)),
|
||||||
),
|
),
|
||||||
SizedBox(
|
SizedBox(
|
||||||
@ -311,7 +321,8 @@ class _AddProfileState extends State<AddProfile> with ShowAlertDialog {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
child: Text(
|
child: Text(
|
||||||
'Créer le profil',
|
AppLocalizations.of(context)?.create_profile_button ??
|
||||||
|
"Create profile",
|
||||||
style: TextStyle(color: Colors.white, fontSize: 25),
|
style: TextStyle(color: Colors.white, fontSize: 25),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user