Merge 89ac8875f92cec1990551149f7b7e05a8cdfd76f into a79de17b241c65c788446872688003349028d68f
This commit is contained in:
commit
417515e67d
10
bl-kernel/admin/themes/default/css/default.css
Normal file → Executable file
10
bl-kernel/admin/themes/default/css/default.css
Normal file → Executable file
@ -659,6 +659,16 @@ div.plugin-links > span.separator {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
<<<<<<< HEAD
|
||||
/* ----------- PLUGINS FILTER ----------- */
|
||||
|
||||
tr.plugin-installed.hide, tr.plugin-notInstalled.hide{
|
||||
width:0%;
|
||||
opacity:0;
|
||||
display:none;
|
||||
transition:all 0.1s;
|
||||
=======
|
||||
#jsformplugin p {
|
||||
margin-bottom: 0;
|
||||
>>>>>>> dignajar/master
|
||||
}
|
@ -3,6 +3,12 @@
|
||||
HTML::title(array('title'=>$L->g('Plugins'), 'icon'=>'puzzle-piece'));
|
||||
|
||||
echo '
|
||||
<div class="uk-button-group">
|
||||
<a class="uk-button" href="#all">ALL</a>
|
||||
<a class="uk-button" href="#plugin-installed">'.$L->g('Activate').'</a>
|
||||
<a class="uk-button" href="#plugin-notInstalled">'.$L->g('Deactivate').'</a>
|
||||
</div>
|
||||
|
||||
<table class="uk-table">
|
||||
<thead>
|
||||
<tr>
|
||||
@ -58,5 +64,18 @@ foreach($plugins['all'] as $Plugin)
|
||||
|
||||
echo '
|
||||
</tbody>
|
||||
</table>
|
||||
';
|
||||
</table>
|
||||
|
||||
<script>
|
||||
$(".uk-button-group a").click(function (e) {
|
||||
e.preventDefault();
|
||||
var a = $(this).attr("href");
|
||||
a = a.substr(1);
|
||||
$("tbody tr").each(function () {
|
||||
if (!$(this).hasClass(a) && a != "all")
|
||||
$(this).addClass("hide");
|
||||
else
|
||||
$(this).removeClass("hide");
|
||||
});
|
||||
});
|
||||
</script>';
|
7
bl-languages/fr_FR.json
Normal file → Executable file
7
bl-languages/fr_FR.json
Normal file → Executable file
@ -235,5 +235,10 @@
|
||||
"delete-image": "Supprimer l’image",
|
||||
"image-description": "Description de l’image",
|
||||
|
||||
"social-networks-links": "Liens vers les réseaux sociaux"
|
||||
"social-networks-links": "Liens vers les réseaux sociaux",
|
||||
|
||||
"email-access-code": "Code d’accès par email",
|
||||
"current-format": "Format actuel",
|
||||
|
||||
"welcome": "Bienvenue"
|
||||
}
|
7
bl-plugins/about/languages/fr_FR.json
Executable file
7
bl-plugins/about/languages/fr_FR.json
Executable file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "À propos",
|
||||
"description": "Description de votre site ou de vous-même."
|
||||
}
|
||||
}
|
7
bl-plugins/api/languages/fr_FR.json
Executable file
7
bl-plugins/api/languages/fr_FR.json
Executable file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "API",
|
||||
"description": "Interface d’intéraction avec Bludit en utilisant le protocole HTTP."
|
||||
}
|
||||
}
|
12
bl-plugins/googletools/languages/fr_FR.json
Executable file
12
bl-plugins/googletools/languages/fr_FR.json
Executable file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Outils Google",
|
||||
"description": "Ce plugin génère la balise meta pour valider votre site avec Google Webmasters Tools et le code JavaScript pour suivre votre site avec Google Analytics."
|
||||
},
|
||||
|
||||
"google-webmasters-tools": "Google Webmasters tools",
|
||||
"google-analytics-tracking-id": "Code de suivis Google Analytics",
|
||||
"complete-this-field-with-the-google-site-verification": "Remplissez ce champ avec la clé de vérification Google Site pour vérifier le propriétaire du site.",
|
||||
"complete-this-field-with-the-tracking-id": "Remplissez ce champ avec l'ID de suivi pour générer le code de suivi Javascript pour Google Analytics."
|
||||
}
|
9
bl-plugins/latest_posts/languages/fr_FR.json
Executable file
9
bl-plugins/latest_posts/languages/fr_FR.json
Executable file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Derniers messages",
|
||||
"description": "Affiche les derniers messages publiés."
|
||||
},
|
||||
|
||||
"amount-of-posts": "Nombre de messages à afficher"
|
||||
}
|
7
bl-plugins/rss/languages/fr_FR.json
Executable file
7
bl-plugins/rss/languages/fr_FR.json
Executable file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Flux RSS",
|
||||
"description": "Ce plugin génére un flux RSS pour votre site."
|
||||
}
|
||||
}
|
7
bl-plugins/sitemap/languages/fr_FR.json
Executable file
7
bl-plugins/sitemap/languages/fr_FR.json
Executable file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"plugin-data":
|
||||
{
|
||||
"name": "Plan du site",
|
||||
"description": "Ce plugin génère un fichier sitemap.xml qui permet de lister les pages de votre site pour indiquer aux moteurs de recherche sur l'organisation du contenu de votre site."
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user