French lang pack update + Little Bludit lang forget fix
This commit is contained in:
parent
23a19548fb
commit
5c051ba131
|
@ -70,6 +70,7 @@ class HTML {
|
||||||
|
|
||||||
public static function tags($args)
|
public static function tags($args)
|
||||||
{
|
{
|
||||||
|
global $L;
|
||||||
// Javascript code
|
// Javascript code
|
||||||
include(PATH_JS.'bludit-tags.js');
|
include(PATH_JS.'bludit-tags.js');
|
||||||
|
|
||||||
|
@ -81,7 +82,7 @@ class HTML {
|
||||||
|
|
||||||
$html .= '<div class="uk-form-controls">';
|
$html .= '<div class="uk-form-controls">';
|
||||||
$html .= '<input id="jstagInput" type="text" class="uk-width-1-2" autocomplete="off">';
|
$html .= '<input id="jstagInput" type="text" class="uk-width-1-2" autocomplete="off">';
|
||||||
$html .= '<button id="jstagAdd" class="uk-button">Add</button>';
|
$html .= '<button id="jstagAdd" class="uk-button">'.$L->g('Add').'</button>';
|
||||||
|
|
||||||
$html .= '<div id="jstagList">';
|
$html .= '<div id="jstagList">';
|
||||||
|
|
||||||
|
|
|
@ -47,7 +47,7 @@ HTML::formOpen(array('id'=>'edit-user-profile-form','class'=>'uk-form-horizontal
|
||||||
));
|
));
|
||||||
|
|
||||||
echo '<div class="uk-form-row">
|
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">
|
<div class="uk-form-controls">
|
||||||
<a href="'.HTML_PATH_ADMIN_ROOT.'user-password/'.$_User->username().'">'.$L->g('Change password').'</a>
|
<a href="'.HTML_PATH_ADMIN_ROOT.'user-password/'.$_User->username().'">'.$L->g('Change password').'</a>
|
||||||
</div>
|
</div>
|
||||||
|
@ -72,11 +72,11 @@ if($Login->role()==='admin') {
|
||||||
'tip'=>$L->g('email-will-not-be-publicly-displayed')
|
'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(
|
HTML::formInputText(array(
|
||||||
'name'=>'twitterUsername',
|
'name'=>'twitterUsername',
|
||||||
'label'=>'Twitter username',
|
'label'=>$L->g('Twitter username'),
|
||||||
'value'=>$_User->twitterUsername(),
|
'value'=>$_User->twitterUsername(),
|
||||||
'class'=>'uk-width-1-2 uk-form-medium',
|
'class'=>'uk-width-1-2 uk-form-medium',
|
||||||
'tip'=>''
|
'tip'=>''
|
||||||
|
@ -84,7 +84,7 @@ if($Login->role()==='admin') {
|
||||||
|
|
||||||
HTML::formInputText(array(
|
HTML::formInputText(array(
|
||||||
'name'=>'facebookUsername',
|
'name'=>'facebookUsername',
|
||||||
'label'=>'Facebook username',
|
'label'=>$L->g('Facebook username'),
|
||||||
'value'=>$_User->facebookUsername(),
|
'value'=>$_User->facebookUsername(),
|
||||||
'class'=>'uk-width-1-2 uk-form-medium',
|
'class'=>'uk-width-1-2 uk-form-medium',
|
||||||
'tip'=>''
|
'tip'=>''
|
||||||
|
@ -92,7 +92,7 @@ if($Login->role()==='admin') {
|
||||||
|
|
||||||
HTML::formInputText(array(
|
HTML::formInputText(array(
|
||||||
'name'=>'googleUsername',
|
'name'=>'googleUsername',
|
||||||
'label'=>'Google username',
|
'label'=>$L->g('Google username'),
|
||||||
'value'=>$_User->googleUsername(),
|
'value'=>$_User->googleUsername(),
|
||||||
'class'=>'uk-width-1-2 uk-form-medium',
|
'class'=>'uk-width-1-2 uk-form-medium',
|
||||||
'tip'=>''
|
'tip'=>''
|
||||||
|
@ -100,7 +100,7 @@ if($Login->role()==='admin') {
|
||||||
|
|
||||||
HTML::formInputText(array(
|
HTML::formInputText(array(
|
||||||
'name'=>'instagramUsername',
|
'name'=>'instagramUsername',
|
||||||
'label'=>'Instagram username',
|
'label'=>$L->g('Instagram username'),
|
||||||
'value'=>$_User->instagramUsername(),
|
'value'=>$_User->instagramUsername(),
|
||||||
'class'=>'uk-width-1-2 uk-form-medium',
|
'class'=>'uk-width-1-2 uk-form-medium',
|
||||||
'tip'=>''
|
'tip'=>''
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
"draft": "Draft",
|
"draft": "Draft",
|
||||||
"delete": "Delete",
|
"delete": "Delete",
|
||||||
"registered": "Registered",
|
"registered": "Registered",
|
||||||
"Notifications": "Notifications",
|
"notifications": "Notifications",
|
||||||
"profile": "Profile",
|
"profile": "Profile",
|
||||||
"email": "Email",
|
"email": "Email",
|
||||||
"settings": "Settings",
|
"settings": "Settings",
|
||||||
|
@ -226,11 +226,18 @@
|
||||||
|
|
||||||
"click-here-to-cancel": "Click here to cancel.",
|
"click-here-to-cancel": "Click here to cancel.",
|
||||||
"type-the-tag-and-press-enter": "Type the tag and press enter.",
|
"type-the-tag-and-press-enter": "Type the tag and press enter.",
|
||||||
|
"add": "Add",
|
||||||
"manage-your-bludit-from-the-admin-panel": "Manage your Bludit from the [admin area]({{ADMIN_AREA_LINK}})",
|
"manage-your-bludit-from-the-admin-panel": "Manage your Bludit from the [admin area]({{ADMIN_AREA_LINK}})",
|
||||||
"there-are-no-images":"There are no images",
|
"there-are-no-images":"There are no images",
|
||||||
|
|
||||||
"click-on-the-image-for-options": "Click on the image for options.",
|
"click-on-the-image-for-options": "Click on the image for options.",
|
||||||
"set-as-cover-image": "Set as cover image",
|
"set-as-cover-image": "Set as cover image",
|
||||||
"delete-image": "Delete 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"
|
||||||
}
|
}
|
|
@ -3,10 +3,10 @@
|
||||||
{
|
{
|
||||||
"native": "Français (France)",
|
"native": "Français (France)",
|
||||||
"english-name": "French",
|
"english-name": "French",
|
||||||
"last-update": "2016-01-19",
|
"last-update": "2016-02-13",
|
||||||
"author": "Frédéric K.",
|
"author": "Frédéric K.",
|
||||||
"email": "stradfred@gmail.com",
|
"email": "stradfred@gmail.com",
|
||||||
"website": ""
|
"website": "http://flatboard.co.nf"
|
||||||
},
|
},
|
||||||
|
|
||||||
"username": "Nom d’utilisateur",
|
"username": "Nom d’utilisateur",
|
||||||
|
@ -37,7 +37,7 @@
|
||||||
"draft": "Brouillon",
|
"draft": "Brouillon",
|
||||||
"delete": "Supprimer",
|
"delete": "Supprimer",
|
||||||
"registered": "Inscrit",
|
"registered": "Inscrit",
|
||||||
"Notifications": "Notifications",
|
"notifications": "Notifications",
|
||||||
"profile": "Profil",
|
"profile": "Profil",
|
||||||
"email": "E-mail",
|
"email": "E-mail",
|
||||||
"settings": "Paramètres",
|
"settings": "Paramètres",
|
||||||
|
@ -226,6 +226,18 @@
|
||||||
"double-click-on-the-image-to-add-it": "Double-cliquez sur l’image pour l’ajouter.",
|
"double-click-on-the-image-to-add-it": "Double-cliquez sur l’image pour l’ajouter.",
|
||||||
"click-here-to-cancel": "Cliquez ici pour annuler.",
|
"click-here-to-cancel": "Cliquez ici pour annuler.",
|
||||||
"type-the-tag-and-press-enter": "Saisissez le tag et appuyez sur Entrée.",
|
"type-the-tag-and-press-enter": "Saisissez le tag et appuyez sur Entrée.",
|
||||||
|
"add": "Ajouter",
|
||||||
"manage-your-bludit-from-the-admin-panel": "Gérez votre Bludit depuis [l’interface d’administration]({{ADMIN_AREA_LINK}})",
|
"manage-your-bludit-from-the-admin-panel": "Gérez votre Bludit depuis [l’interface d’administration]({{ADMIN_AREA_LINK}})",
|
||||||
"there-are-no-images":"Il n’y a aucune image"
|
"there-are-no-images":"Il n’y a aucune image",
|
||||||
|
|
||||||
|
"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",
|
||||||
|
|
||||||
|
"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