Changeset 3136
- Timestamp:
- 07/01/13 03:11:05 (10 years ago)
- Location:
- plugins/periodical
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/periodical/_admin.php
r2927 r3136 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of periodical, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 79 81 if ($action == 'remove_post_periodical') 80 82 { 81 echo '<h2> '.__('remove selected entries from periodical').'</h2>';83 echo '<h2><span class="page-title">'.__('remove selected entries from periodical').'</span></h2>'; 82 84 } 83 85 elseif ($action == 'add_post_periodical') 84 86 { 85 echo '<h2> '.__('add selected entries to periodical').'</h2>';87 echo '<h2><span class="page-title">'.__('add selected entries to periodical').'</span></h2>'; 86 88 } 87 89 … … 158 160 $core->formNonce(). 159 161 form::hidden(array('action'),$action). 160 '<input type="submit" value="'.__(' save').'" /></p>'.162 '<input type="submit" value="'.__('Save').'" /></p>'. 161 163 '</form>'; 162 164 } -
plugins/periodical/_define.php
r2934 r3136 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of periodical, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 17 19 /* Description*/ "Published periodically entries", 18 20 /* Author */ "JC Denis", 19 /* Version */ ' 0.5.1',21 /* Version */ '2013.06.30', 20 22 /* Permissions */ 'usage,contentadmin' 21 23 ); 22 /* date */ #2011013023 24 ?> -
plugins/periodical/_install.php
r2927 r3136 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of periodical, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 21 23 { 22 24 # Check DC version 23 if (version_compare(str_replace("-r","-p",DC_VERSION),'2. 2-alpha','<'))25 if (version_compare(str_replace("-r","-p",DC_VERSION),'2.5-alpha','<')) 24 26 { 25 throw new Exception('periodical requires Dotclear 2. 2');27 throw new Exception('periodical requires Dotclear 2.5'); 26 28 } 27 29 -
plugins/periodical/_prepend.php
r2927 r3136 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of periodical, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 13 15 if (!defined('DC_RC_PATH')){return;} 14 if (version_compare(str_replace("-r","-p",DC_VERSION),'2. 2-alpha','<')){return;}16 if (version_compare(str_replace("-r","-p",DC_VERSION),'2.5-alpha','<')){return;} 15 17 16 18 global $__autoload, $core; -
plugins/periodical/_public.php
r2927 r3136 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of periodical, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 135 137 136 138 # --BEHAVIOR-- periodicalAfterPublishedPeriodicalEntry 137 $ this->core->callBehavior('periodicalAfterPublishedPeriodicalEntry',$core,$posts,$periods);139 $core->callBehavior('periodicalAfterPublishedPeriodicalEntry',$core,$posts,$periods); 138 140 139 141 } -
plugins/periodical/inc/class.periodical.php
r2927 r3136 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of periodical, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 -
plugins/periodical/inc/index.addperiod.php
r2927 r3136 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of periodical, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 36 38 throw New Exception(__('Period title is required')); 37 39 } 38 if (strtotime($period_ strdt) > strtotime($period_enddt))40 if (strtotime($period_curdt) > strtotime($period_enddt)) 39 41 { 40 42 throw New Exception(__('Start date must be older than end date')); … … 67 69 html::escapeHTML($core->blog->name). 68 70 ' › <a href="'.$p_url.'&part=periods">'.__('Periodical').'</a>'. 69 ' › '.__('New period').71 ' › <span class="page-title">'.__('New period').'</span>'. 70 72 '</h2>'.$msg; 71 73 … … 88 90 </div></div> 89 91 <div class="clear"> 90 <p><input type="submit" name="save" value="'.__(' save').'" />'.92 <p><input type="submit" name="save" value="'.__('Save').'" />'. 91 93 $core->formNonce(). 92 94 form::hidden(array('action'),'createperiod'). -
plugins/periodical/inc/index.editperiod.php
r2927 r3136 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of periodical, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 53 55 throw New Exception(__('Period title is required')); 54 56 } 55 if (strtotime($period_ strdt) > strtotime($period_enddt))57 if (strtotime($period_curdt) > strtotime($period_enddt)) 56 58 { 57 59 throw New Exception(__('Start date must be older than end date')); … … 309 311 html::escapeHTML($core->blog->name). 310 312 ' › <a href="'.$p_url.'&part=periods">'.__('Periodical').'</a>'. 311 ' › '.__('Edit period').313 ' › <span class="page-title">'.__('Edit period').'</span>'. 312 314 ' - <a class="button" href="'.$p_url.'&part=addperiod">'.__('New period').'</a>'. 313 315 '</h2>'.$msg; … … 332 334 </div></div> 333 335 <div class="clear"> 334 <p><input type="submit" name="save" value="'.__(' save').'" />'.336 <p><input type="submit" name="save" value="'.__('Save').'" />'. 335 337 $core->formNonce(). 336 338 form::hidden(array('action'),'updateperiod'). … … 374 376 '<p><label class="classic">'.form::field('nb',3,3,$nb_per_page).' '. 375 377 __('Entries per page').'</label> '. 376 '<input type="submit" value="'.__(' filter').'" />'.378 '<input type="submit" value="'.__('Apply filters').'" />'. 377 379 form::hidden(array('id'),$period_id). 378 380 form::hidden(array('p'),'periodical'). -
plugins/periodical/inc/index.periods.php
r2927 r3136 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of periodical, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 125 127 <h2>'. 126 128 html::escapeHTML($core->blog->name). 127 ' › '.__('Periodical').129 ' › <span class="page-title">'.__('Periodical').'</span>'. 128 130 ' - <a class="button" href="'.$p_url.'&part=addperiod">'.__('New period').'</a>'. 129 131 '</h2>'.$msg.' … … 148 150 '<p><label class="classic">'.form::field('nb',3,3,$nb_per_page).' '. 149 151 __('Entries per page').'</label> '. 150 '<input type="submit" value="'.__(' filter').'" />'.152 '<input type="submit" value="'.__('Apply filters').'" />'. 151 153 form::hidden(array('p'),'periodical'). 152 154 form::hidden(array('part'),'periods').'</p>'. -
plugins/periodical/inc/index.setting.php
r2927 r3136 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of periodical, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 64 66 html::escapeHTML($core->blog->name). 65 67 ' › <a href="'.$p_url.'&part=periods">'.__('Periodical').'</a>'. 66 ' › '.__('Settings').68 ' › <span class="page-title">'.__('Settings').'</span>'. 67 69 ' - <a class="button" href="'.$p_url.'&part=addperiod">'.__('New period').'</a>'. 68 70 '</h2>'.$msg.' … … 93 95 94 96 <div class="clear"> 95 <p><input type="submit" name="save" value="'.__(' save').'" />'.97 <p><input type="submit" name="save" value="'.__('Save').'" />'. 96 98 $core->formNonce(). 97 99 form::hidden(array('p'),'periodical'). -
plugins/periodical/inc/lib.index.pager.php
r2927 r3136 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of periodical, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 -
plugins/periodical/inc/lib.periodical.socialmewriter.php
r2934 r3136 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of periodical, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 -
plugins/periodical/index.php
r2927 r3136 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of periodical, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 38 40 if (isset($msg_list[$msg])) 39 41 { 40 $msg = sprintf('<p class="message">%s</p>',$msg_list[$msg]);42 $msg = dcPage::message($msg_list[$msg]); 41 43 } 42 44 -
plugins/periodical/js/main.js
r2927 r3136 1 1 /* -- BEGIN LICENSE BLOCK ---------------------------------- 2 * 2 3 * This file is part of periodical, a plugin for Dotclear 2. 3 4 * 4 * Copyright (c) 2009-201 1 JCDenis and contributors5 * jcdenis@gdwd.com5 * Copyright (c) 2009-2013 Jean-Christian Denis and contributors 6 * contact@jcdenis.fr http://jcd.lv 6 7 * 7 8 * Licensed under the GPL version 2.0 license. 8 9 * A copy of this license is available in LICENSE file or at 9 10 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 * 10 12 * -- END LICENSE BLOCK ------------------------------------*/ 11 13 -
plugins/periodical/js/period.js
r2927 r3136 1 1 /* -- BEGIN LICENSE BLOCK ---------------------------------- 2 * 2 3 * This file is part of periodical, a plugin for Dotclear 2. 3 4 * 4 * Copyright (c) 2009-201 1 JCDenis and contributors5 * jcdenis@gdwd.com5 * Copyright (c) 2009-2013 Jean-Christian Denis and contributors 6 * contact@jcdenis.fr http://jcd.lv 6 7 * 7 8 * Licensed under the GPL version 2.0 license. 8 9 * A copy of this license is available in LICENSE file or at 9 10 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 * 10 12 * -- END LICENSE BLOCK ------------------------------------*/ 11 13 -
plugins/periodical/locales/fr/main.lang.php
r2927 r3136 1 1 <?php 2 2 // Language: Français 3 // Module: periodical - 0.54 // Date: 201 1-01-30 17:36:015 // Translated with dcTranslater - 1.56 7 #_admin.php: 188 #_admin.php:6 09 #_admin.php:6 410 #_admin.php:22 711 #inc/index.addperiod.php:6 112 #inc/index.addperiod.php: 6813 #inc/index.editperiod.php:21 014 #inc/index.editperiod.php: 29915 #inc/index.editperiod.php:31 016 #inc/index.periods.php:1 1817 #inc/index.periods.php:12 718 #inc/index.setting.php:5 519 #inc/index.setting.php:6 520 #index.php:6 23 // Module: periodical - 2013.06.30 4 // Date: 2013-07-01 01:08:09 5 // Translated with dcTranslater - 2013.05.11 6 7 #_admin.php:20 8 #_admin.php:62 9 #_admin.php:66 10 #_admin.php:229 11 #inc/index.addperiod.php:63 12 #inc/index.addperiod.php:70 13 #inc/index.editperiod.php:212 14 #inc/index.editperiod.php:301 15 #inc/index.editperiod.php:312 16 #inc/index.periods.php:120 17 #inc/index.periods.php:129 18 #inc/index.setting.php:57 19 #inc/index.setting.php:67 20 #index.php:64 21 21 $GLOBALS['__l10n']['Periodical'] = 'Publications périodiques'; 22 22 23 #_admin.php:6 023 #_admin.php:62 24 24 $GLOBALS['__l10n']['add to periodical'] = 'ajouter aux publications périodiques'; 25 25 26 #_admin.php:6 427 #inc/index.editperiod.php:21 026 #_admin.php:66 27 #inc/index.editperiod.php:212 28 28 $GLOBALS['__l10n']['remove from periodical'] = 'retirer des publications périodiques'; 29 29 30 #_admin.php:8 130 #_admin.php:83 31 31 $GLOBALS['__l10n']['remove selected entries from periodical'] = 'retirer les billets selectionnés des publications périodiques'; 32 32 33 #_admin.php:8 533 #_admin.php:87 34 34 $GLOBALS['__l10n']['add selected entries to periodical'] = 'ajouter les billets selectionnés aux publications périodiques'; 35 35 36 #_admin.php:9 336 #_admin.php:95 37 37 $GLOBALS['__l10n']['There is no periodical'] = 'Il n\'y a pas de publication périodique'; 38 38 39 #_admin.php:1 1939 #_admin.php:121 40 40 $GLOBALS['__l10n']['There is no pending post'] = 'Il n\'y a pas de billet en attente'; 41 41 42 #_admin.php:12 342 #_admin.php:125 43 43 $GLOBALS['__l10n']['There is no editable post'] = 'Il n\'y a pas de billet modifiable'; 44 44 45 #_admin.php:14 246 #index.php:4 645 #_admin.php:144 46 #index.php:48 47 47 $GLOBALS['__l10n']['Periods'] = 'Périodes'; 48 48 49 #_admin.php:2 2949 #_admin.php:231 50 50 $GLOBALS['__l10n']['Link to a period:'] = 'lier à une période :'; 51 51 52 #inc/class.periodical.php:31 652 #inc/class.periodical.php:318 53 53 $GLOBALS['__l10n']['Hourly'] = 'Toutes les heures'; 54 54 55 #inc/class.periodical.php:31 755 #inc/class.periodical.php:319 56 56 $GLOBALS['__l10n']['twice a day'] = 'Deux fois par jour'; 57 57 58 #inc/class.periodical.php:3 1858 #inc/class.periodical.php:320 59 59 $GLOBALS['__l10n']['Daily'] = 'Une fois par jour'; 60 60 61 #inc/class.periodical.php:3 1961 #inc/class.periodical.php:321 62 62 $GLOBALS['__l10n']['Weekly'] = 'Une fois par semaine'; 63 63 64 #inc/class.periodical.php:32 064 #inc/class.periodical.php:322 65 65 $GLOBALS['__l10n']['Monthly'] = 'Un fois par mois'; 66 66 67 #inc/class.periodical.php:35 268 #inc/lib.index.pager.php:7 667 #inc/class.periodical.php:354 68 #inc/lib.index.pager.php:78 69 69 $GLOBALS['__l10n']['Unknow frequence'] = 'Fréquence inconnue'; 70 70 71 #inc/index.addperiod.php: 1871 #inc/index.addperiod.php:20 72 72 $GLOBALS['__l10n']['One post per day'] = 'Un billet par jour'; 73 73 74 #inc/index.addperiod.php:3 274 #inc/index.addperiod.php:34 75 75 $GLOBALS['__l10n']['Period title is already taken'] = 'Le titre de la période est déjà pris'; 76 76 77 #inc/index.addperiod.php:3 678 #inc/index.editperiod.php:5 377 #inc/index.addperiod.php:38 78 #inc/index.editperiod.php:55 79 79 $GLOBALS['__l10n']['Period title is required'] = 'Le titre de la période est requis'; 80 80 81 #inc/index.addperiod.php:4 082 #inc/index.editperiod.php:5 781 #inc/index.addperiod.php:42 82 #inc/index.editperiod.php:59 83 83 $GLOBALS['__l10n']['Start date must be older than end date'] = 'La date de début doit être plus ancienne que la date de fin'; 84 84 85 #inc/index.addperiod.php: 6986 #inc/index.editperiod.php:31 287 #inc/index.periods.php:1 2888 #inc/index.setting.php:6 789 #index.php: 4885 #inc/index.addperiod.php:71 86 #inc/index.editperiod.php:314 87 #inc/index.periods.php:130 88 #inc/index.setting.php:69 89 #index.php:50 90 90 $GLOBALS['__l10n']['New period'] = 'Nouvelle période'; 91 92 #inc/index.addperiod.php:7993 #inc/index.editperiod.php:32394 $GLOBALS['__l10n']['Next update:'] = 'Prochaine mise à jour :';95 91 96 92 #inc/index.addperiod.php:81 97 93 #inc/index.editperiod.php:325 94 $GLOBALS['__l10n']['Next update:'] = 'Prochaine mise à jour :'; 95 96 #inc/index.addperiod.php:83 97 #inc/index.editperiod.php:327 98 98 $GLOBALS['__l10n']['End date:'] = 'Date de fin :'; 99 100 #inc/index.addperiod.php:84101 #inc/index.editperiod.php:328102 $GLOBALS['__l10n']['Publication frequency:'] = 'Fréquence de publication :';103 99 104 100 #inc/index.addperiod.php:86 105 101 #inc/index.editperiod.php:330 102 $GLOBALS['__l10n']['Publication frequency:'] = 'Fréquence de publication :'; 103 104 #inc/index.addperiod.php:88 105 #inc/index.editperiod.php:332 106 106 $GLOBALS['__l10n']['Number of entries to publish every time:'] = 'Nombre de billets à publier à chaque fois :'; 107 107 108 #inc/index.editperiod.php:19 3109 #inc/index.setting.php:1 6110 #inc/lib.index.pager.php:11 3108 #inc/index.editperiod.php:195 109 #inc/index.setting.php:18 110 #inc/lib.index.pager.php:115 111 111 $GLOBALS['__l10n']['Create date'] = 'Date de création'; 112 112 113 #inc/index.editperiod.php:311 113 #inc/index.editperiod.php:313 114 #index.php:49 115 $GLOBALS['__l10n']['Edit period'] = 'Modifier la période'; 116 117 #inc/index.editperiod.php:319 118 $GLOBALS['__l10n']['Period'] = 'Période'; 119 120 #inc/index.periods.php:56 121 #inc/lib.index.pager.php:37 122 $GLOBALS['__l10n']['Next update'] = 'Prochaine mise à jour'; 123 124 #inc/index.periods.php:57 125 #inc/lib.index.pager.php:41 126 $GLOBALS['__l10n']['End date'] = 'Date de fin'; 127 128 #inc/index.periods.php:58 129 $GLOBALS['__l10n']['Frequence'] = 'Fréquence'; 130 131 #inc/index.periods.php:68 132 $GLOBALS['__l10n']['empty periods'] = 'vider les périodes'; 133 134 #inc/index.periods.php:69 135 $GLOBALS['__l10n']['delete periods'] = 'effacer les périodes'; 136 137 #inc/index.periods.php:171 138 $GLOBALS['__l10n']['Selected periods action:'] = 'Action sur les périodes selectionnées :'; 139 140 #inc/index.setting.php:60 141 $GLOBALS['__l10n']['Please wait'] = 'Veuillez patienter'; 142 143 #inc/index.setting.php:68 114 144 #index.php:47 115 $GLOBALS['__l10n']['Edit period'] = 'Modifier la période'; 116 117 #inc/index.editperiod.php:317 118 $GLOBALS['__l10n']['Period'] = 'Période'; 119 120 #inc/index.periods.php:54 121 #inc/lib.index.pager.php:35 122 $GLOBALS['__l10n']['Next update'] = 'Prochaine mise à jour'; 123 124 #inc/index.periods.php:55 145 #index.php:62 146 $GLOBALS['__l10n']['Settings'] = 'Paramètres'; 147 148 #inc/index.setting.php:74 149 $GLOBALS['__l10n']['Extension'] = 'Extension'; 150 151 #inc/index.setting.php:77 152 $GLOBALS['__l10n']['Enable extension'] = 'Activer l\'extension'; 153 154 #inc/index.setting.php:80 155 $GLOBALS['__l10n']['Dates of published entries'] = 'Dates de billets publiés'; 156 157 #inc/index.setting.php:83 158 $GLOBALS['__l10n']['Update post date'] = 'Mettre à jour la date du billet'; 159 160 #inc/index.setting.php:86 161 $GLOBALS['__l10n']['Update post url'] = 'Mettre à jour l\'URL du billet'; 162 163 #inc/index.setting.php:89 164 $GLOBALS['__l10n']['Order of publication of entries'] = 'Ordre de publication des billets'; 165 166 #inc/lib.index.pager.php:24 167 $GLOBALS['__l10n']['No period'] = 'Pas de période'; 168 169 #inc/lib.index.pager.php:36 170 $GLOBALS['__l10n']['Name'] = 'Nom'; 171 172 #inc/lib.index.pager.php:38 173 $GLOBALS['__l10n']['Frequency'] = 'Fréquence'; 174 125 175 #inc/lib.index.pager.php:39 126 $GLOBALS['__l10n']['End date'] = 'Date de fin';127 128 #inc/index.periods.php:56129 $GLOBALS['__l10n']['Frequence'] = 'Fréquence';130 131 #inc/index.periods.php:66132 $GLOBALS['__l10n']['empty periods'] = 'vider les périodes';133 134 #inc/index.periods.php:67135 $GLOBALS['__l10n']['delete periods'] = 'effacer les périodes';136 137 #inc/index.periods.php:169138 $GLOBALS['__l10n']['Selected periods action:'] = 'Action sur les périodes selectionnées :';139 140 #inc/index.setting.php:58141 $GLOBALS['__l10n']['Please wait'] = 'Veuillez patienter';142 143 #inc/index.setting.php:66144 #index.php:45145 #index.php:60146 $GLOBALS['__l10n']['Settings'] = 'Paramètres';147 148 #inc/index.setting.php:72149 $GLOBALS['__l10n']['Extension'] = 'Extension';150 151 #inc/index.setting.php:75152 $GLOBALS['__l10n']['Enable extension'] = 'Activer l\'extension';153 154 #inc/index.setting.php:78155 $GLOBALS['__l10n']['Dates of published entries'] = 'Dates de billets publiés';156 157 #inc/index.setting.php:81158 $GLOBALS['__l10n']['Update post date'] = 'Mettre à jour la date du billet';159 160 #inc/index.setting.php:84161 $GLOBALS['__l10n']['Update post url'] = 'Mettre à jour l\'URL du billet';162 163 #inc/index.setting.php:87164 $GLOBALS['__l10n']['Order of publication of entries'] = 'Ordre de publication des billets';165 166 #inc/lib.index.pager.php:22167 $GLOBALS['__l10n']['No period'] = 'Pas de période';168 169 #inc/lib.index.pager.php:34170 $GLOBALS['__l10n']['Name'] = 'Nom';171 172 #inc/lib.index.pager.php:36173 $GLOBALS['__l10n']['Frequency'] = 'Fréquence';174 175 #inc/lib.index.pager.php:37176 176 $GLOBALS['__l10n']['Publications'] = 'Publications'; 177 177 178 #inc/lib.index.pager.php:7 3178 #inc/lib.index.pager.php:75 179 179 $GLOBALS['__l10n']['view related entries'] = 'voir les billets liés'; 180 180 181 #inc/lib.index.pager.php:8 1181 #inc/lib.index.pager.php:83 182 182 $GLOBALS['__l10n']['edit period'] = 'modifier la période'; 183 183 184 #inc/lib.periodical.socialmewriter.php:2 1184 #inc/lib.periodical.socialmewriter.php:23 185 185 $GLOBALS['__l10n']['New periodical publication'] = 'Nouvelle publication périodique'; 186 186 187 #inc/lib.periodical.socialmewriter.php:2 2187 #inc/lib.periodical.socialmewriter.php:24 188 188 $GLOBALS['__l10n']['When an entry is published on a period'] = 'Lorsque qu\'un billet st marqué comme publié par une période'; 189 189 190 #index.php: 29190 #index.php:31 191 191 $GLOBALS['__l10n']['Configuration successfully saved'] = 'Configuration sauvegardée avec succès'; 192 192 193 #index.php:3 0193 #index.php:32 194 194 $GLOBALS['__l10n']['Periods successfully deleted'] = 'Périodes mises à jour avec succès'; 195 195 196 #index.php:3 1196 #index.php:33 197 197 $GLOBALS['__l10n']['Periods successfully emptied'] = 'Périodes vidées avec succès'; 198 198 199 #index.php:3 2199 #index.php:34 200 200 $GLOBALS['__l10n']['Period successfully updated'] = 'Periode mise à jour avec succès'; 201 201 202 #index.php:3 3202 #index.php:35 203 203 $GLOBALS['__l10n']['Period successfully created'] = 'Période créée avec succès'; 204 204 205 #index.php:3 4205 #index.php:36 206 206 $GLOBALS['__l10n']['Entries successfully published'] = 'Billets publié avec succès'; 207 207 208 #index.php:3 5208 #index.php:37 209 209 $GLOBALS['__l10n']['Entries successfully unpublished'] = 'Billets mis hors ligne avec succès'; 210 210 211 #index.php:3 6211 #index.php:38 212 212 $GLOBALS['__l10n']['Entries successfully removed from periodical'] = 'Billets retirés des publications avec succès'; 213 213 -
plugins/periodical/locales/fr/main.po
r2927 r3136 1 1 # Language: Français 2 # Module: periodical - 0.53 # Date: 201 1-01-30 17:36:024 # Translated with translater 1.52 # Module: periodical - 2013.06.30 3 # Date: 2013-07-01 01:08:09 4 # Translated with translater 2013.05.11 5 5 6 6 msgid "" 7 7 msgstr "" 8 8 "Content-Type: text/plain; charset=UTF-8\n" 9 "Project-Id-Version: periodical 0.5\n"9 "Project-Id-Version: periodical 2013.06.30\n" 10 10 "POT-Creation-Date: \n" 11 "PO-Revision-Date: 201 1-01-30T17:36:02+00:00\n"12 "Last-Translator: J CDenis\n"11 "PO-Revision-Date: 2013-07-01T01:08:09+00:00\n" 12 "Last-Translator: Jean-Christian Denis\n" 13 13 "Language-Team: \n" 14 14 "MIME-Version: 1.0\n" 15 15 "Content-Transfer-Encoding: 8bit\n" 16 16 17 #: _admin.php: 1818 #: _admin.php:6 019 #: _admin.php:6 420 #: _admin.php:22 721 #: inc/index.addperiod.php:6 122 #: inc/index.addperiod.php: 6823 #: inc/index.editperiod.php:21 024 #: inc/index.editperiod.php: 29925 #: inc/index.editperiod.php:31 026 #: inc/index.periods.php:1 1827 #: inc/index.periods.php:12 728 #: inc/index.setting.php:5 529 #: inc/index.setting.php:6 530 #: index.php:6 217 #: _admin.php:20 18 #: _admin.php:62 19 #: _admin.php:66 20 #: _admin.php:229 21 #: inc/index.addperiod.php:63 22 #: inc/index.addperiod.php:70 23 #: inc/index.editperiod.php:212 24 #: inc/index.editperiod.php:301 25 #: inc/index.editperiod.php:312 26 #: inc/index.periods.php:120 27 #: inc/index.periods.php:129 28 #: inc/index.setting.php:57 29 #: inc/index.setting.php:67 30 #: index.php:64 31 31 msgid "Periodical" 32 32 msgstr "Publications périodiques" 33 33 34 #: _admin.php:6 034 #: _admin.php:62 35 35 msgid "add to periodical" 36 36 msgstr "ajouter aux publications périodiques" 37 37 38 #: _admin.php:6 439 #: inc/index.editperiod.php:21 038 #: _admin.php:66 39 #: inc/index.editperiod.php:212 40 40 msgid "remove from periodical" 41 41 msgstr "retirer des publications périodiques" 42 42 43 #: _admin.php:8 143 #: _admin.php:83 44 44 msgid "remove selected entries from periodical" 45 45 msgstr "retirer les billets selectionnés des publications périodiques" 46 46 47 #: _admin.php:8 547 #: _admin.php:87 48 48 msgid "add selected entries to periodical" 49 49 msgstr "ajouter les billets selectionnés aux publications périodiques" 50 50 51 #: _admin.php:9 351 #: _admin.php:95 52 52 msgid "There is no periodical" 53 53 msgstr "Il n'y a pas de publication périodique" 54 54 55 #: _admin.php:1 1955 #: _admin.php:121 56 56 msgid "There is no pending post" 57 57 msgstr "Il n'y a pas de billet en attente" 58 58 59 #: _admin.php:12 359 #: _admin.php:125 60 60 msgid "There is no editable post" 61 61 msgstr "Il n'y a pas de billet modifiable" 62 62 63 #: _admin.php:14 264 #: index.php:4 663 #: _admin.php:144 64 #: index.php:48 65 65 msgid "Periods" 66 66 msgstr "Périodes" 67 67 68 #: _admin.php:2 2968 #: _admin.php:231 69 69 msgid "Link to a period:" 70 70 msgstr "lier à une période :" 71 71 72 #: inc/class.periodical.php:31 672 #: inc/class.periodical.php:318 73 73 msgid "Hourly" 74 74 msgstr "Toutes les heures" 75 75 76 #: inc/class.periodical.php:31 776 #: inc/class.periodical.php:319 77 77 msgid "twice a day" 78 78 msgstr "Deux fois par jour" 79 79 80 #: inc/class.periodical.php:3 1880 #: inc/class.periodical.php:320 81 81 msgid "Daily" 82 82 msgstr "Une fois par jour" 83 83 84 #: inc/class.periodical.php:3 1984 #: inc/class.periodical.php:321 85 85 msgid "Weekly" 86 86 msgstr "Une fois par semaine" 87 87 88 #: inc/class.periodical.php:32 088 #: inc/class.periodical.php:322 89 89 msgid "Monthly" 90 90 msgstr "Un fois par mois" 91 91 92 #: inc/class.periodical.php:35 293 #: inc/lib.index.pager.php:7 692 #: inc/class.periodical.php:354 93 #: inc/lib.index.pager.php:78 94 94 msgid "Unknow frequence" 95 95 msgstr "Fréquence inconnue" 96 96 97 #: inc/index.addperiod.php: 1897 #: inc/index.addperiod.php:20 98 98 msgid "One post per day" 99 99 msgstr "Un billet par jour" 100 100 101 #: inc/index.addperiod.php:3 2101 #: inc/index.addperiod.php:34 102 102 msgid "Period title is already taken" 103 103 msgstr "Le titre de la période est déjà pris" 104 104 105 #: inc/index.addperiod.php:3 6106 #: inc/index.editperiod.php:5 3105 #: inc/index.addperiod.php:38 106 #: inc/index.editperiod.php:55 107 107 msgid "Period title is required" 108 108 msgstr "Le titre de la période est requis" 109 109 110 #: inc/index.addperiod.php:4 0111 #: inc/index.editperiod.php:5 7110 #: inc/index.addperiod.php:42 111 #: inc/index.editperiod.php:59 112 112 msgid "Start date must be older than end date" 113 113 msgstr "La date de début doit être plus ancienne que la date de fin" 114 114 115 #: inc/index.addperiod.php: 69116 #: inc/index.editperiod.php:31 2117 #: inc/index.periods.php:1 28118 #: inc/index.setting.php:6 7119 #: index.php: 48115 #: inc/index.addperiod.php:71 116 #: inc/index.editperiod.php:314 117 #: inc/index.periods.php:130 118 #: inc/index.setting.php:69 119 #: index.php:50 120 120 msgid "New period" 121 121 msgstr "Nouvelle période" 122 122 123 #: inc/index.addperiod.php: 79124 #: inc/index.editperiod.php:32 3123 #: inc/index.addperiod.php:81 124 #: inc/index.editperiod.php:325 125 125 msgid "Next update:" 126 126 msgstr "Prochaine mise à jour :" 127 127 128 #: inc/index.addperiod.php:8 1129 #: inc/index.editperiod.php:32 5128 #: inc/index.addperiod.php:83 129 #: inc/index.editperiod.php:327 130 130 msgid "End date:" 131 131 msgstr "Date de fin :" 132 132 133 #: inc/index.addperiod.php:8 4134 #: inc/index.editperiod.php:3 28133 #: inc/index.addperiod.php:86 134 #: inc/index.editperiod.php:330 135 135 msgid "Publication frequency:" 136 136 msgstr "Fréquence de publication :" 137 137 138 #: inc/index.addperiod.php:8 6139 #: inc/index.editperiod.php:33 0138 #: inc/index.addperiod.php:88 139 #: inc/index.editperiod.php:332 140 140 msgid "Number of entries to publish every time:" 141 141 msgstr "Nombre de billets à publier à chaque fois :" 142 142 143 #: inc/index.editperiod.php:19 3144 #: inc/index.setting.php:1 6145 #: inc/lib.index.pager.php:11 3143 #: inc/index.editperiod.php:195 144 #: inc/index.setting.php:18 145 #: inc/lib.index.pager.php:115 146 146 msgid "Create date" 147 147 msgstr "Date de création" 148 148 149 #: inc/index.editperiod.php:31 1150 #: index.php:4 7149 #: inc/index.editperiod.php:313 150 #: index.php:49 151 151 msgid "Edit period" 152 152 msgstr "Modifier la période" 153 153 154 #: inc/index.editperiod.php:31 7154 #: inc/index.editperiod.php:319 155 155 msgid "Period" 156 156 msgstr "Période" 157 157 158 #: inc/index.periods.php:5 4159 #: inc/lib.index.pager.php:3 5158 #: inc/index.periods.php:56 159 #: inc/lib.index.pager.php:37 160 160 msgid "Next update" 161 161 msgstr "Prochaine mise à jour" 162 162 163 #: inc/index.periods.php:5 5164 #: inc/lib.index.pager.php: 39163 #: inc/index.periods.php:57 164 #: inc/lib.index.pager.php:41 165 165 msgid "End date" 166 166 msgstr "Date de fin" 167 167 168 #: inc/index.periods.php:5 6168 #: inc/index.periods.php:58 169 169 msgid "Frequence" 170 170 msgstr "Fréquence" 171 171 172 #: inc/index.periods.php:6 6172 #: inc/index.periods.php:68 173 173 msgid "empty periods" 174 174 msgstr "vider les périodes" 175 175 176 #: inc/index.periods.php:6 7176 #: inc/index.periods.php:69 177 177 msgid "delete periods" 178 178 msgstr "effacer les périodes" 179 179 180 #: inc/index.periods.php:1 69180 #: inc/index.periods.php:171 181 181 msgid "Selected periods action:" 182 182 msgstr "Action sur les périodes selectionnées :" 183 183 184 #: inc/index.setting.php: 58184 #: inc/index.setting.php:60 185 185 msgid "Please wait" 186 186 msgstr "Veuillez patienter" 187 187 188 #: inc/index.setting.php:6 6189 #: index.php:4 5190 #: index.php:6 0188 #: inc/index.setting.php:68 189 #: index.php:47 190 #: index.php:62 191 191 msgid "Settings" 192 192 msgstr "Paramètres" 193 193 194 #: inc/index.setting.php:7 2194 #: inc/index.setting.php:74 195 195 msgid "Extension" 196 196 msgstr "Extension" 197 197 198 #: inc/index.setting.php:7 5198 #: inc/index.setting.php:77 199 199 msgid "Enable extension" 200 200 msgstr "Activer l'extension" 201 201 202 #: inc/index.setting.php: 78202 #: inc/index.setting.php:80 203 203 msgid "Dates of published entries" 204 204 msgstr "Dates de billets publiés" 205 205 206 #: inc/index.setting.php:8 1206 #: inc/index.setting.php:83 207 207 msgid "Update post date" 208 208 msgstr "Mettre à jour la date du billet" 209 209 210 #: inc/index.setting.php:8 4210 #: inc/index.setting.php:86 211 211 msgid "Update post url" 212 212 msgstr "Mettre à jour l'URL du billet" 213 213 214 #: inc/index.setting.php:8 7214 #: inc/index.setting.php:89 215 215 msgid "Order of publication of entries" 216 216 msgstr "Ordre de publication des billets" 217 217 218 #: inc/lib.index.pager.php:2 2218 #: inc/lib.index.pager.php:24 219 219 msgid "No period" 220 220 msgstr "Pas de période" 221 221 222 #: inc/lib.index.pager.php:3 4222 #: inc/lib.index.pager.php:36 223 223 msgid "Name" 224 224 msgstr "Nom" 225 225 226 #: inc/lib.index.pager.php:3 6226 #: inc/lib.index.pager.php:38 227 227 msgid "Frequency" 228 228 msgstr "Fréquence" 229 229 230 #: inc/lib.index.pager.php:3 7230 #: inc/lib.index.pager.php:39 231 231 msgid "Publications" 232 232 msgstr "Publications" 233 233 234 #: inc/lib.index.pager.php:7 3234 #: inc/lib.index.pager.php:75 235 235 msgid "view related entries" 236 236 msgstr "voir les billets liés" 237 237 238 #: inc/lib.index.pager.php:8 1238 #: inc/lib.index.pager.php:83 239 239 msgid "edit period" 240 240 msgstr "modifier la période" 241 241 242 #: inc/lib.periodical.socialmewriter.php:2 1242 #: inc/lib.periodical.socialmewriter.php:23 243 243 msgid "New periodical publication" 244 244 msgstr "Nouvelle publication périodique" 245 245 246 #: inc/lib.periodical.socialmewriter.php:2 2246 #: inc/lib.periodical.socialmewriter.php:24 247 247 msgid "When an entry is published on a period" 248 248 msgstr "Lorsque qu'un billet st marqué comme publié par une période" 249 249 250 #: index.php: 29250 #: index.php:31 251 251 msgid "Configuration successfully saved" 252 252 msgstr "Configuration sauvegardée avec succès" 253 253 254 #: index.php:3 0254 #: index.php:32 255 255 msgid "Periods successfully deleted" 256 256 msgstr "Périodes mises à jour avec succès" 257 257 258 #: index.php:3 1258 #: index.php:33 259 259 msgid "Periods successfully emptied" 260 260 msgstr "Périodes vidées avec succès" 261 261 262 #: index.php:3 2262 #: index.php:34 263 263 msgid "Period successfully updated" 264 264 msgstr "Periode mise à jour avec succès" 265 265 266 #: index.php:3 3266 #: index.php:35 267 267 msgid "Period successfully created" 268 268 msgstr "Période créée avec succès" 269 269 270 #: index.php:3 4270 #: index.php:36 271 271 msgid "Entries successfully published" 272 272 msgstr "Billets publié avec succès" 273 273 274 #: index.php:3 5274 #: index.php:37 275 275 msgid "Entries successfully unpublished" 276 276 msgstr "Billets mis hors ligne avec succès" 277 277 278 #: index.php:3 6278 #: index.php:38 279 279 msgid "Entries successfully removed from periodical" 280 280 msgstr "Billets retirés des publications avec succès" -
plugins/periodical/release.txt
r2927 r3136 1 2013.06.30 2 * Small fix and typo 3 1 4 0.5 20110130 2 5 * Fixed install on nightly buid
Note: See TracChangeset
for help on using the changeset viewer.