Changeset 3334
- Timestamp:
- 01/20/15 16:43:59 (8 years ago)
- Location:
- plugins/myBlogNumbers
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/myBlogNumbers/CHANGELOG
r3254 r3334 1 myBlogNumbers 2015.01.20 - Pierre Van Glabeke 2 =========================================================== 3 * Ajout hors ligne dans widget (dc2.7) 4 * Corrections typo 5 1 6 myBlogNumbers 2013.11.12 2 7 =========================================================== -
plugins/myBlogNumbers/_define.php
r3254 r3334 20 20 $this->registerModule( 21 21 /* Name */ 22 " My blog numbers",22 "myBlogNumbers", 23 23 /* Description*/ 24 24 "Show some figures of your blog", 25 25 /* Author */ 26 "Jean-Christian Denis ",26 "Jean-Christian Denis, Pierre Van Glabeke", 27 27 /* Version */ 28 '201 3.11.12',28 '2015.01.20', 29 29 array( 30 30 'permissions' => 'usage,contentadmin', 31 31 'type' => 'plugin', 32 'dc_min' => '2. 6',33 'support' => 'http:// jcd.lv/q=myBlogNumbers',32 'dc_min' => '2.7', 33 'support' => 'http://lab.dotclear.org/wiki/plugin/myBlogNumbers', 34 34 'details' => 'http://plugins.dotaddict.org/dc2/details/myBlogNumbers' 35 35 ) -
plugins/myBlogNumbers/_public.php
r3254 r3334 27 27 $s_line = '<li>%s%s</li>'; 28 28 $s_title = '<strong>%s</strong> '; 29 30 if ($w->offline) 31 return; 29 32 30 33 # Home only … … 145 148 146 149 # Display 147 return 148 ($w->content_only ? '' : '<div class="myblognumbers'. 149 ($w->class ? ' '.html::escapeHTML($w->class) : '').'"">'). 150 ($w->title ? '<h2>'.html::escapeHTML($w->title).'</h2>' : ''). 151 '<ul>'.$content.$addons.'</ul>'. 152 ($w->content_only ? '' : '</div>'); 150 $res = 151 ($w->title ? $w->renderTitle(html::escapeHTML($w->title)) : ''). 152 '<ul>'.$content.$addons.'</ul>'; 153 154 return $w->renderDiv($w->content_only,'myblognumbers '.$w->class,'',$res); 153 155 } -
plugins/myBlogNumbers/_widgets.php
r3254 r3334 152 152 '' 153 153 ); 154 $w->myblognumbers->setting('offline',__('Offline'),0,'check'); 154 155 } -
plugins/myBlogNumbers/locales/fr/main.po
r3254 r3334 1 # Language: Français2 # Module: myBlogNumbers - 2013.06.293 # Date: 2013-06-29 01:52:454 # Translated with translater 2013.05.115 6 1 msgid "" 7 2 msgstr "" … … 16 11 17 12 msgid "Show some figures of your blog" 18 msgstr "Afficher quelques chiffres de vot e blog"13 msgstr "Afficher quelques chiffres de votre blog" 19 14 20 15 #: _public.php:41 … … 60 55 #: _public.php:153 61 56 msgid "no tags" 62 msgstr "aucun mot 57 msgstr "aucun mot-clé" 63 58 64 59 #: _public.php:157 65 60 msgid "one tag" 66 61 msgid_plural "%s tags" 67 msgstr[0] "un mot 68 msgstr[1] "%s mots 62 msgstr[0] "un mot-clé" 63 msgstr[1] "%s mots-clés" 69 64 70 65 #: _public.php:177 … … 133 128 #: _widgets.php:49 134 129 msgid "Show tags count" 135 msgstr "Afficher le nombre de tags"130 msgstr "Afficher le nombre de mots-clés" 136 131 137 132 #: _widgets.php:50 138 133 msgid "Title for tags count:" 139 msgstr "Titre pour le nombre de tags :" 134 msgstr "Titre pour le nombre de mots-clés :" 135 136 msgid "Tags:" 137 msgstr "Mots-clés :" 140 138 141 139 #: _widgets.php:55
Note: See TracChangeset
for help on using the changeset viewer.