Little lang fix

This commit is contained in:
Frédéric K 2016-02-13 10:43:36 +01:00
parent 6a21578e4c
commit 5ceafa0c70
3 changed files with 22 additions and 10 deletions

12
bl-kernel/admin/views/edit-user.php Normal file → Executable file
View File

@ -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'=>''

10
bl-languages/en_US.json Normal file → Executable file
View File

@ -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"
}

View File

@ -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 limage pour plus doptions.",
"set-as-cover-image": "Définir comme image de couverture",
"delete-image": "Supprimer limage",
"image-description": "Description de limage"
"image-description": "Description de limage",
"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"
}