Skip to content

Commit 72c944d

Browse files
author
Diego
committed
French fixes
1 parent 7328a1c commit 72c944d

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

admin/boot/rules/98-constants.bit

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
define('NIBBLEBLOG_VERSION', '4.0.1');
1717
define('NIBBLEBLOG_NAME', 'Coffee');
1818
define('NIBBLEBLOG_RELEASE_DATE', '14/02/2014');
19-
define('NIBBLEBLOG_BUILD', 1392406951);
19+
define('NIBBLEBLOG_BUILD', 2392406951);
2020

2121
// =====================================================================
2222
// DEBUG

bludit.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,13 @@ function post_to_json($post, $tojson=true)
3636

3737
// Category
3838
$category = $_DB_CATEGORIES->get( array('id'=>$post['id_cat']) );
39-
array_push($post['tags'], $category['name']);
39+
array_push($post['tags'], array('name'=>$category['name'], 'name_human'=>$category['name']));
40+
4041
/*
4142
The above array_push line may need to be rewritten.
4243
4344
$post['tags'] now has the following structure...
44-
45+
4546
Array
4647
(
4748
[0] => Array
@@ -55,7 +56,7 @@ function post_to_json($post, $tojson=true)
5556
[name_human] => ice cream
5657
)
5758
)
58-
59+
5960
*/
6061

6162
// Content

plugins/about/languages/fr_FR.bit

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ $_PLUGIN_CONFIG['LANG'] = array(
66
'FULL_NAME'=>'Nom complet',
77
'ABOUT'=>'À Propos',
88
'PICTURE'=>'Image',
9-
'SUPPORT_JPG_AND_PNG_IMAGES'=>'Supporte les formats d'images JPG et PNG. L'image sera redimensionnée en 200x200px.'
9+
'SUPPORT_JPG_AND_PNG_IMAGES'=>'Supporte les formats d\'images JPG et PNG. L\'image sera redimensionnée en 200x200px.'
1010
);
1111

1212
?>

plugins/categories/languages/fr_FR.bit

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
$_PLUGIN_CONFIG['LANG'] = array(
44
'NAME'=>'Catégories',
5-
'DESCRIPTION'=>'Affiche toutes les catégories de votre blog et permet à l'utilisateur de filtrer les messages par catégorie.'
5+
'DESCRIPTION'=>'Affiche toutes les catégories de votre blog et permet à l\'utilisateur de filtrer les messages par catégorie.'
66
);
77

88
?>

plugins/html_code/languages/fr_FR.bit

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
$_PLUGIN_CONFIG['LANG'] = array(
44
'NAME'=>'Code HTML',
5-
'DESCRIPTION'=>'Ce plugin vous permet d'intégrer du code HTML dans votre blog.',
5+
'DESCRIPTION'=>'Ce plugin vous permet d\'intégrer du code HTML dans votre blog.',
66
'HTML_CODE'=>'Code HTML'
77
);
88

plugins/quick_links/languages/fr_FR.bit

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
$_PLUGIN_CONFIG['LANG'] = array(
44
'NAME'=>'Navigation rapide',
5-
'DESCRIPTION'=>'Accès rapide au panneau d'administration.',
5+
'DESCRIPTION'=>'Accès rapide au panneau d\'administration.',
66
'HOME'=>'Accueil',
77
'DASHBOARD'=>'tableau de bord',
88
'NEW_SIMPLE_POST'=>'Nouveau billet simple',

plugins/sponsors/languages/fr_FR.bit

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
$_PLUGIN_CONFIG['LANG'] = array(
44
'NAME'=>'Sponsors',
5-
'DESCRIPTION'=>'Ajouter la publicité sur votre blog. Vous pouvez ajouter les annonces Google Adsense ou bien celles d'un autre sponsor.',
5+
'DESCRIPTION'=>'Ajouter la publicité sur votre blog. Vous pouvez ajouter les annonces Google Adsense ou bien celles d\'un autre sponsor.',
66
'SPONSOR_CODE'=>'Code de votre Sponsor'
77
);
88

0 commit comments

Comments
 (0)