Little lang fix
This commit is contained in:
parent
6a21578e4c
commit
5ceafa0c70
|
@ -47,7 +47,7 @@ HTML::formOpen(array('id'=>'edit-user-profile-form','class'=>'uk-form-horizontal
|
|||
));
|
||||
|
||||
echo '<div class="uk-form-row">
|
||||
<label class="uk-form-label">Password</label>
|
||||
<label class="uk-form-label">'.$L->g('password').'</label>
|
||||
<div class="uk-form-controls">
|
||||
<a href="'.HTML_PATH_ADMIN_ROOT.'user-password/'.$_User->username().'">'.$L->g('Change password').'</a>
|
||||
</div>
|
||||
|
@ -72,11 +72,11 @@ if($Login->role()==='admin') {
|
|||
'tip'=>$L->g('email-will-not-be-publicly-displayed')
|
||||
));
|
||||
|
||||
HTML::legend(array('value'=>'Social networks'));
|
||||
HTML::legend(array('value'=>$L->g('Social networks')));
|
||||
|
||||
HTML::formInputText(array(
|
||||
'name'=>'twitterUsername',
|
||||
'label'=>'Twitter username',
|
||||
'label'=>$L->g('Twitter username'),
|
||||
'value'=>$_User->twitterUsername(),
|
||||
'class'=>'uk-width-1-2 uk-form-medium',
|
||||
'tip'=>''
|
||||
|
@ -84,7 +84,7 @@ if($Login->role()==='admin') {
|
|||
|
||||
HTML::formInputText(array(
|
||||
'name'=>'facebookUsername',
|
||||
'label'=>'Facebook username',
|
||||
'label'=>$L->g('Facebook username'),
|
||||
'value'=>$_User->facebookUsername(),
|
||||
'class'=>'uk-width-1-2 uk-form-medium',
|
||||
'tip'=>''
|
||||
|
@ -92,7 +92,7 @@ if($Login->role()==='admin') {
|
|||
|
||||
HTML::formInputText(array(
|
||||
'name'=>'googleUsername',
|
||||
'label'=>'Google username',
|
||||
'label'=>$L->g('Google username'),
|
||||
'value'=>$_User->googleUsername(),
|
||||
'class'=>'uk-width-1-2 uk-form-medium',
|
||||
'tip'=>''
|
||||
|
@ -100,7 +100,7 @@ if($Login->role()==='admin') {
|
|||
|
||||
HTML::formInputText(array(
|
||||
'name'=>'instagramUsername',
|
||||
'label'=>'Instagram username',
|
||||
'label'=>$L->g('Instagram username'),
|
||||
'value'=>$_User->instagramUsername(),
|
||||
'class'=>'uk-width-1-2 uk-form-medium',
|
||||
'tip'=>''
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
"draft": "Draft",
|
||||
"delete": "Delete",
|
||||
"registered": "Registered",
|
||||
"Notifications": "Notifications",
|
||||
"notifications": "Notifications",
|
||||
"profile": "Profile",
|
||||
"email": "Email",
|
||||
"settings": "Settings",
|
||||
|
@ -232,5 +232,11 @@
|
|||
"click-on-the-image-for-options": "Click on the image for options.",
|
||||
"set-as-cover-image": "Set as cover image",
|
||||
"delete-image": "Delete image",
|
||||
"image-description": "Image description"
|
||||
"image-description": "Image description",
|
||||
|
||||
"social-networks": "Social networks",
|
||||
"twitter-username": "Twitter username",
|
||||
"facebook-username": "Facebook username",
|
||||
"google-username": "Google username",
|
||||
"instagram-username": "Instagram username"
|
||||
}
|
|
@ -37,7 +37,7 @@
|
|||
"draft": "Brouillon",
|
||||
"delete": "Supprimer",
|
||||
"registered": "Inscrit",
|
||||
"Notifications": "Notifications",
|
||||
"notifications": "Notifications",
|
||||
"profile": "Profil",
|
||||
"email": "E-mail",
|
||||
"settings": "Paramètres",
|
||||
|
@ -232,5 +232,11 @@
|
|||
"click-on-the-image-for-options": "Cliquez sur l’image pour plus d’options.",
|
||||
"set-as-cover-image": "Définir comme image de couverture",
|
||||
"delete-image": "Supprimer l’image",
|
||||
"image-description": "Description de l’image"
|
||||
"image-description": "Description de l’image",
|
||||
|
||||
"social-networks": "Réseaux sociaux",
|
||||
"twitter-username": "Compte utilisateur Twitter",
|
||||
"facebook-username": "Compte utilisateur Facebook",
|
||||
"google-username": "Compte utilisateur Google",
|
||||
"instagram-username": "Compte utilisateur Instagram"
|
||||
}
|
Loading…
Reference in New Issue