Dotclear

Changeset 3136


Ignore:
Timestamp:
07/01/13 03:11:05 (10 years ago)
Author:
JcDenis
Message:
  • Small fix and typo
Location:
plugins/periodical
Files:
18 edited

Legend:

Unmodified
Added
Removed
  • plugins/periodical/_admin.php

    r2927 r3136  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of periodical, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
     
    7981               if ($action == 'remove_post_periodical') 
    8082               { 
    81                     echo '<h2>'.__('remove selected entries from periodical').'</h2>'; 
     83                    echo '<h2><span class="page-title">'.__('remove selected entries from periodical').'</span></h2>'; 
    8284               } 
    8385               elseif ($action == 'add_post_periodical') 
    8486               { 
    85                     echo '<h2>'.__('add selected entries to periodical').'</h2>'; 
     87                    echo '<h2><span class="page-title">'.__('add selected entries to periodical').'</span></h2>'; 
    8688               } 
    8789                
     
    158160                         $core->formNonce(). 
    159161                         form::hidden(array('action'),$action). 
    160                          '<input type="submit" value="'.__('save').'" /></p>'. 
     162                         '<input type="submit" value="'.__('Save').'" /></p>'. 
    161163                         '</form>'; 
    162164                    } 
  • plugins/periodical/_define.php

    r2934 r3136  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of periodical, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
     
    1719     /* Description*/         "Published periodically entries", 
    1820     /* Author */             "JC Denis", 
    19      /* Version */            '0.5.1', 
     21     /* Version */            '2013.06.30', 
    2022     /* Permissions */        'usage,contentadmin' 
    2123); 
    22      /* date */          #20110130 
    2324?> 
  • plugins/periodical/_install.php

    r2927 r3136  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of periodical, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
     
    2123{ 
    2224     # 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','<')) 
    2426     { 
    25           throw new Exception('periodical requires Dotclear 2.2'); 
     27          throw new Exception('periodical requires Dotclear 2.5'); 
    2628     } 
    2729      
  • plugins/periodical/_prepend.php

    r2927 r3136  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of periodical, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
    1315if (!defined('DC_RC_PATH')){return;} 
    14 if (version_compare(str_replace("-r","-p",DC_VERSION),'2.2-alpha','<')){return;} 
     16if (version_compare(str_replace("-r","-p",DC_VERSION),'2.5-alpha','<')){return;} 
    1517 
    1618global $__autoload, $core; 
  • plugins/periodical/_public.php

    r2927 r3136  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of periodical, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
     
    135137                                         
    136138                                        # --BEHAVIOR-- periodicalAfterPublishedPeriodicalEntry 
    137                                         $this->core->callBehavior('periodicalAfterPublishedPeriodicalEntry',$core,$posts,$periods); 
     139                                        $core->callBehavior('periodicalAfterPublishedPeriodicalEntry',$core,$posts,$periods); 
    138140                                         
    139141                                   } 
  • plugins/periodical/inc/class.periodical.php

    r2927 r3136  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of periodical, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
  • plugins/periodical/inc/index.addperiod.php

    r2927 r3136  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of periodical, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
     
    3638               throw New Exception(__('Period title is required')); 
    3739          } 
    38           if (strtotime($period_strdt) > strtotime($period_enddt)) 
     40          if (strtotime($period_curdt) > strtotime($period_enddt)) 
    3941          { 
    4042               throw New Exception(__('Start date must be older than end date')); 
     
    6769html::escapeHTML($core->blog->name). 
    6870' &rsaquo; <a href="'.$p_url.'&amp;part=periods">'.__('Periodical').'</a>'. 
    69 ' &rsaquo; '.__('New period'). 
     71' &rsaquo; <span class="page-title">'.__('New period').'</span>'. 
    7072'</h2>'.$msg; 
    7173 
     
    8890</div></div> 
    8991<div class="clear"> 
    90 <p><input type="submit" name="save" value="'.__('save').'" />'. 
     92<p><input type="submit" name="save" value="'.__('Save').'" />'. 
    9193$core->formNonce(). 
    9294form::hidden(array('action'),'createperiod'). 
  • plugins/periodical/inc/index.editperiod.php

    r2927 r3136  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of periodical, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
     
    5355               throw New Exception(__('Period title is required')); 
    5456          } 
    55           if (strtotime($period_strdt) > strtotime($period_enddt))  
     57          if (strtotime($period_curdt) > strtotime($period_enddt))  
    5658          { 
    5759               throw New Exception(__('Start date must be older than end date')); 
     
    309311html::escapeHTML($core->blog->name). 
    310312' &rsaquo; <a href="'.$p_url.'&amp;part=periods">'.__('Periodical').'</a>'. 
    311 ' &rsaquo; '.__('Edit period'). 
     313' &rsaquo; <span class="page-title">'.__('Edit period').'</span>'. 
    312314' - <a class="button" href="'.$p_url.'&amp;part=addperiod">'.__('New period').'</a>'. 
    313315'</h2>'.$msg; 
     
    332334</div></div> 
    333335<div class="clear"> 
    334 <p><input type="submit" name="save" value="'.__('save').'" />'. 
     336<p><input type="submit" name="save" value="'.__('Save').'" />'. 
    335337$core->formNonce(). 
    336338form::hidden(array('action'),'updateperiod'). 
     
    374376'<p><label class="classic">'.form::field('nb',3,3,$nb_per_page).' '. 
    375377__('Entries per page').'</label> '. 
    376 '<input type="submit" value="'.__('filter').'" />'. 
     378'<input type="submit" value="'.__('Apply filters').'" />'. 
    377379form::hidden(array('id'),$period_id). 
    378380form::hidden(array('p'),'periodical'). 
  • plugins/periodical/inc/index.periods.php

    r2927 r3136  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of periodical, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
     
    125127<h2>'. 
    126128html::escapeHTML($core->blog->name). 
    127 ' &rsaquo; '.__('Periodical'). 
     129' &rsaquo; <span class="page-title">'.__('Periodical').'</span>'. 
    128130' - <a class="button" href="'.$p_url.'&amp;part=addperiod">'.__('New period').'</a>'. 
    129131'</h2>'.$msg.' 
     
    148150'<p><label class="classic">'.form::field('nb',3,3,$nb_per_page).' '. 
    149151__('Entries per page').'</label> '. 
    150 '<input type="submit" value="'.__('filter').'" />'. 
     152'<input type="submit" value="'.__('Apply filters').'" />'. 
    151153form::hidden(array('p'),'periodical'). 
    152154form::hidden(array('part'),'periods').'</p>'. 
  • plugins/periodical/inc/index.setting.php

    r2927 r3136  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of periodical, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
     
    6466html::escapeHTML($core->blog->name). 
    6567' &rsaquo; <a href="'.$p_url.'&amp;part=periods">'.__('Periodical').'</a>'. 
    66 ' &rsaquo; '.__('Settings'). 
     68' &rsaquo; <span class="page-title">'.__('Settings').'</span>'. 
    6769' - <a class="button" href="'.$p_url.'&amp;part=addperiod">'.__('New period').'</a>'. 
    6870'</h2>'.$msg.' 
     
    9395 
    9496<div class="clear"> 
    95 <p><input type="submit" name="save" value="'.__('save').'" />'. 
     97<p><input type="submit" name="save" value="'.__('Save').'" />'. 
    9698$core->formNonce(). 
    9799form::hidden(array('p'),'periodical'). 
  • plugins/periodical/inc/lib.index.pager.php

    r2927 r3136  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of periodical, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
  • plugins/periodical/inc/lib.periodical.socialmewriter.php

    r2934 r3136  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of periodical, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
  • plugins/periodical/index.php

    r2927 r3136  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of periodical, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
     
    3840if (isset($msg_list[$msg])) 
    3941{ 
    40      $msg = sprintf('<p class="message">%s</p>',$msg_list[$msg]); 
     42     $msg = dcPage::message($msg_list[$msg]); 
    4143} 
    4244 
  • plugins/periodical/js/main.js

    r2927 r3136  
    11/* -- BEGIN LICENSE BLOCK ---------------------------------- 
     2 * 
    23 * This file is part of periodical, a plugin for Dotclear 2. 
    34 *  
    4  * Copyright (c) 2009-2011 JC Denis and contributors 
    5  * jcdenis@gdwd.com 
     5 * Copyright (c) 2009-2013 Jean-Christian Denis and contributors 
     6 * contact@jcdenis.fr http://jcd.lv 
    67 *  
    78 * Licensed under the GPL version 2.0 license. 
    89 * A copy of this license is available in LICENSE file or at 
    910 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     11 * 
    1012 * -- END LICENSE BLOCK ------------------------------------*/ 
    1113 
  • plugins/periodical/js/period.js

    r2927 r3136  
    11/* -- BEGIN LICENSE BLOCK ---------------------------------- 
     2 * 
    23 * This file is part of periodical, a plugin for Dotclear 2. 
    34 *  
    4  * Copyright (c) 2009-2011 JC Denis and contributors 
    5  * jcdenis@gdwd.com 
     5 * Copyright (c) 2009-2013 Jean-Christian Denis and contributors 
     6 * contact@jcdenis.fr http://jcd.lv 
    67 *  
    78 * Licensed under the GPL version 2.0 license. 
    89 * A copy of this license is available in LICENSE file or at 
    910 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     11 * 
    1012 * -- END LICENSE BLOCK ------------------------------------*/ 
    1113 
  • plugins/periodical/locales/fr/main.lang.php

    r2927 r3136  
    11<?php 
    22// Language: Français  
    3 // Module: periodical - 0.5 
    4 // Date: 2011-01-30 17:36:01  
    5 // Translated with dcTranslater - 1.5  
    6  
    7 #_admin.php:18 
    8 #_admin.php:60 
    9 #_admin.php:64 
    10 #_admin.php:227 
    11 #inc/index.addperiod.php:61 
    12 #inc/index.addperiod.php:68 
    13 #inc/index.editperiod.php:210 
    14 #inc/index.editperiod.php:299 
    15 #inc/index.editperiod.php:310 
    16 #inc/index.periods.php:118 
    17 #inc/index.periods.php:127 
    18 #inc/index.setting.php:55 
    19 #inc/index.setting.php:65 
    20 #index.php:62 
     3// 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 
    2121$GLOBALS['__l10n']['Periodical'] = 'Publications périodiques'; 
    2222 
    23 #_admin.php:60 
     23#_admin.php:62 
    2424$GLOBALS['__l10n']['add to periodical'] = 'ajouter aux publications périodiques'; 
    2525 
    26 #_admin.php:64 
    27 #inc/index.editperiod.php:210 
     26#_admin.php:66 
     27#inc/index.editperiod.php:212 
    2828$GLOBALS['__l10n']['remove from periodical'] = 'retirer des publications périodiques'; 
    2929 
    30 #_admin.php:81 
     30#_admin.php:83 
    3131$GLOBALS['__l10n']['remove selected entries from periodical'] = 'retirer les billets selectionnés des publications périodiques'; 
    3232 
    33 #_admin.php:85 
     33#_admin.php:87 
    3434$GLOBALS['__l10n']['add selected entries to periodical'] = 'ajouter les billets selectionnés aux publications périodiques'; 
    3535 
    36 #_admin.php:93 
     36#_admin.php:95 
    3737$GLOBALS['__l10n']['There is no periodical'] = 'Il n\'y a pas de publication périodique'; 
    3838 
    39 #_admin.php:119 
     39#_admin.php:121 
    4040$GLOBALS['__l10n']['There is no pending post'] = 'Il n\'y a pas de billet en attente'; 
    4141 
    42 #_admin.php:123 
     42#_admin.php:125 
    4343$GLOBALS['__l10n']['There is no editable post'] = 'Il n\'y a pas de billet modifiable'; 
    4444 
    45 #_admin.php:142 
    46 #index.php:46 
     45#_admin.php:144 
     46#index.php:48 
    4747$GLOBALS['__l10n']['Periods'] = 'Périodes'; 
    4848 
    49 #_admin.php:229 
     49#_admin.php:231 
    5050$GLOBALS['__l10n']['Link to a period:'] = 'lier à une période :'; 
    5151 
    52 #inc/class.periodical.php:316 
     52#inc/class.periodical.php:318 
    5353$GLOBALS['__l10n']['Hourly'] = 'Toutes les heures'; 
    5454 
    55 #inc/class.periodical.php:317 
     55#inc/class.periodical.php:319 
    5656$GLOBALS['__l10n']['twice a day'] = 'Deux fois par jour'; 
    5757 
    58 #inc/class.periodical.php:318 
     58#inc/class.periodical.php:320 
    5959$GLOBALS['__l10n']['Daily'] = 'Une fois par jour'; 
    6060 
    61 #inc/class.periodical.php:319 
     61#inc/class.periodical.php:321 
    6262$GLOBALS['__l10n']['Weekly'] = 'Une fois par semaine'; 
    6363 
    64 #inc/class.periodical.php:320 
     64#inc/class.periodical.php:322 
    6565$GLOBALS['__l10n']['Monthly'] = 'Un fois par mois'; 
    6666 
    67 #inc/class.periodical.php:352 
    68 #inc/lib.index.pager.php:76 
     67#inc/class.periodical.php:354 
     68#inc/lib.index.pager.php:78 
    6969$GLOBALS['__l10n']['Unknow frequence'] = 'Fréquence inconnue'; 
    7070 
    71 #inc/index.addperiod.php:18 
     71#inc/index.addperiod.php:20 
    7272$GLOBALS['__l10n']['One post per day'] = 'Un billet par jour'; 
    7373 
    74 #inc/index.addperiod.php:32 
     74#inc/index.addperiod.php:34 
    7575$GLOBALS['__l10n']['Period title is already taken'] = 'Le titre de la période est déjà pris'; 
    7676 
    77 #inc/index.addperiod.php:36 
    78 #inc/index.editperiod.php:53 
     77#inc/index.addperiod.php:38 
     78#inc/index.editperiod.php:55 
    7979$GLOBALS['__l10n']['Period title is required'] = 'Le titre de la période est requis'; 
    8080 
    81 #inc/index.addperiod.php:40 
    82 #inc/index.editperiod.php:57 
     81#inc/index.addperiod.php:42 
     82#inc/index.editperiod.php:59 
    8383$GLOBALS['__l10n']['Start date must be older than end date'] = 'La date de début doit être plus ancienne que la date de fin'; 
    8484 
    85 #inc/index.addperiod.php:69 
    86 #inc/index.editperiod.php:312 
    87 #inc/index.periods.php:128 
    88 #inc/index.setting.php:67 
    89 #index.php:48 
     85#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 
    9090$GLOBALS['__l10n']['New period'] = 'Nouvelle période'; 
    91  
    92 #inc/index.addperiod.php:79 
    93 #inc/index.editperiod.php:323 
    94 $GLOBALS['__l10n']['Next update:'] = 'Prochaine mise à jour :'; 
    9591 
    9692#inc/index.addperiod.php:81 
    9793#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 
    9898$GLOBALS['__l10n']['End date:'] = 'Date de fin :'; 
    99  
    100 #inc/index.addperiod.php:84 
    101 #inc/index.editperiod.php:328 
    102 $GLOBALS['__l10n']['Publication frequency:'] = 'Fréquence de publication :'; 
    10399 
    104100#inc/index.addperiod.php:86 
    105101#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 
    106106$GLOBALS['__l10n']['Number of entries to publish every time:'] = 'Nombre de billets à publier à chaque fois :'; 
    107107 
    108 #inc/index.editperiod.php:193 
    109 #inc/index.setting.php:16 
    110 #inc/lib.index.pager.php:113 
     108#inc/index.editperiod.php:195 
     109#inc/index.setting.php:18 
     110#inc/lib.index.pager.php:115 
    111111$GLOBALS['__l10n']['Create date'] = 'Date de création'; 
    112112 
    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 
    114144#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 
    125175#inc/lib.index.pager.php:39 
    126 $GLOBALS['__l10n']['End date'] = 'Date de fin'; 
    127  
    128 #inc/index.periods.php:56 
    129 $GLOBALS['__l10n']['Frequence'] = 'Fréquence'; 
    130  
    131 #inc/index.periods.php:66 
    132 $GLOBALS['__l10n']['empty periods'] = 'vider les périodes'; 
    133  
    134 #inc/index.periods.php:67 
    135 $GLOBALS['__l10n']['delete periods'] = 'effacer les périodes'; 
    136  
    137 #inc/index.periods.php:169 
    138 $GLOBALS['__l10n']['Selected periods action:'] = 'Action sur les périodes selectionnées :'; 
    139  
    140 #inc/index.setting.php:58 
    141 $GLOBALS['__l10n']['Please wait'] = 'Veuillez patienter'; 
    142  
    143 #inc/index.setting.php:66 
    144 #index.php:45 
    145 #index.php:60 
    146 $GLOBALS['__l10n']['Settings'] = 'Paramètres'; 
    147  
    148 #inc/index.setting.php:72 
    149 $GLOBALS['__l10n']['Extension'] = 'Extension'; 
    150  
    151 #inc/index.setting.php:75 
    152 $GLOBALS['__l10n']['Enable extension'] = 'Activer l\'extension'; 
    153  
    154 #inc/index.setting.php:78 
    155 $GLOBALS['__l10n']['Dates of published entries'] = 'Dates de billets publiés'; 
    156  
    157 #inc/index.setting.php:81 
    158 $GLOBALS['__l10n']['Update post date'] = 'Mettre à jour la date du billet'; 
    159  
    160 #inc/index.setting.php:84 
    161 $GLOBALS['__l10n']['Update post url'] = 'Mettre à jour l\'URL du billet'; 
    162  
    163 #inc/index.setting.php:87 
    164 $GLOBALS['__l10n']['Order of publication of entries'] = 'Ordre de publication des billets'; 
    165  
    166 #inc/lib.index.pager.php:22 
    167 $GLOBALS['__l10n']['No period'] = 'Pas de période'; 
    168  
    169 #inc/lib.index.pager.php:34 
    170 $GLOBALS['__l10n']['Name'] = 'Nom'; 
    171  
    172 #inc/lib.index.pager.php:36 
    173 $GLOBALS['__l10n']['Frequency'] = 'Fréquence'; 
    174  
    175 #inc/lib.index.pager.php:37 
    176176$GLOBALS['__l10n']['Publications'] = 'Publications'; 
    177177 
    178 #inc/lib.index.pager.php:73 
     178#inc/lib.index.pager.php:75 
    179179$GLOBALS['__l10n']['view related entries'] = 'voir les billets liés'; 
    180180 
    181 #inc/lib.index.pager.php:81 
     181#inc/lib.index.pager.php:83 
    182182$GLOBALS['__l10n']['edit period'] = 'modifier la période'; 
    183183 
    184 #inc/lib.periodical.socialmewriter.php:21 
     184#inc/lib.periodical.socialmewriter.php:23 
    185185$GLOBALS['__l10n']['New periodical publication'] = 'Nouvelle publication périodique'; 
    186186 
    187 #inc/lib.periodical.socialmewriter.php:22 
     187#inc/lib.periodical.socialmewriter.php:24 
    188188$GLOBALS['__l10n']['When an entry is published on a period'] = 'Lorsque qu\'un billet st marqué comme publié par une période'; 
    189189 
    190 #index.php:29 
     190#index.php:31 
    191191$GLOBALS['__l10n']['Configuration successfully saved'] = 'Configuration sauvegardée avec succès'; 
    192192 
    193 #index.php:30 
     193#index.php:32 
    194194$GLOBALS['__l10n']['Periods successfully deleted'] = 'Périodes mises à jour avec succès'; 
    195195 
    196 #index.php:31 
     196#index.php:33 
    197197$GLOBALS['__l10n']['Periods successfully emptied'] = 'Périodes vidées avec succès'; 
    198198 
    199 #index.php:32 
     199#index.php:34 
    200200$GLOBALS['__l10n']['Period successfully updated'] = 'Periode mise à jour avec succès'; 
    201201 
    202 #index.php:33 
     202#index.php:35 
    203203$GLOBALS['__l10n']['Period successfully created'] = 'Période créée avec succès'; 
    204204 
    205 #index.php:34 
     205#index.php:36 
    206206$GLOBALS['__l10n']['Entries successfully published'] = 'Billets publié avec succès'; 
    207207 
    208 #index.php:35 
     208#index.php:37 
    209209$GLOBALS['__l10n']['Entries successfully unpublished'] = 'Billets mis hors ligne avec succès'; 
    210210 
    211 #index.php:36 
     211#index.php:38 
    212212$GLOBALS['__l10n']['Entries successfully removed from periodical'] = 'Billets retirés des publications avec succès'; 
    213213 
  • plugins/periodical/locales/fr/main.po

    r2927 r3136  
    11# Language: Français 
    2 # Module: periodical - 0.5 
    3 # Date: 2011-01-30 17:36:02 
    4 # Translated with translater 1.5 
     2# Module: periodical - 2013.06.30 
     3# Date: 2013-07-01 01:08:09 
     4# Translated with translater 2013.05.11 
    55 
    66msgid "" 
    77msgstr "" 
    88"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" 
    1010"POT-Creation-Date: \n" 
    11 "PO-Revision-Date: 2011-01-30T17:36:02+00:00\n" 
    12 "Last-Translator: JC Denis\n" 
     11"PO-Revision-Date: 2013-07-01T01:08:09+00:00\n" 
     12"Last-Translator: Jean-Christian Denis\n" 
    1313"Language-Team: \n" 
    1414"MIME-Version: 1.0\n" 
    1515"Content-Transfer-Encoding: 8bit\n" 
    1616 
    17 #: _admin.php:18 
    18 #: _admin.php:60 
    19 #: _admin.php:64 
    20 #: _admin.php:227 
    21 #: inc/index.addperiod.php:61 
    22 #: inc/index.addperiod.php:68 
    23 #: inc/index.editperiod.php:210 
    24 #: inc/index.editperiod.php:299 
    25 #: inc/index.editperiod.php:310 
    26 #: inc/index.periods.php:118 
    27 #: inc/index.periods.php:127 
    28 #: inc/index.setting.php:55 
    29 #: inc/index.setting.php:65 
    30 #: index.php:62 
     17#: _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 
    3131msgid "Periodical" 
    3232msgstr "Publications périodiques" 
    3333 
    34 #: _admin.php:60 
     34#: _admin.php:62 
    3535msgid "add to periodical" 
    3636msgstr "ajouter aux publications périodiques" 
    3737 
    38 #: _admin.php:64 
    39 #: inc/index.editperiod.php:210 
     38#: _admin.php:66 
     39#: inc/index.editperiod.php:212 
    4040msgid "remove from periodical" 
    4141msgstr "retirer des publications périodiques" 
    4242 
    43 #: _admin.php:81 
     43#: _admin.php:83 
    4444msgid "remove selected entries from periodical" 
    4545msgstr "retirer les billets selectionnés des publications périodiques" 
    4646 
    47 #: _admin.php:85 
     47#: _admin.php:87 
    4848msgid "add selected entries to periodical" 
    4949msgstr "ajouter les billets selectionnés aux publications périodiques" 
    5050 
    51 #: _admin.php:93 
     51#: _admin.php:95 
    5252msgid "There is no periodical" 
    5353msgstr "Il n'y a pas de publication périodique" 
    5454 
    55 #: _admin.php:119 
     55#: _admin.php:121 
    5656msgid "There is no pending post" 
    5757msgstr "Il n'y a pas de billet en attente" 
    5858 
    59 #: _admin.php:123 
     59#: _admin.php:125 
    6060msgid "There is no editable post" 
    6161msgstr "Il n'y a pas de billet modifiable" 
    6262 
    63 #: _admin.php:142 
    64 #: index.php:46 
     63#: _admin.php:144 
     64#: index.php:48 
    6565msgid "Periods" 
    6666msgstr "Périodes" 
    6767 
    68 #: _admin.php:229 
     68#: _admin.php:231 
    6969msgid "Link to a period:" 
    7070msgstr "lier à une période :" 
    7171 
    72 #: inc/class.periodical.php:316 
     72#: inc/class.periodical.php:318 
    7373msgid "Hourly" 
    7474msgstr "Toutes les heures" 
    7575 
    76 #: inc/class.periodical.php:317 
     76#: inc/class.periodical.php:319 
    7777msgid "twice a day" 
    7878msgstr "Deux fois par jour" 
    7979 
    80 #: inc/class.periodical.php:318 
     80#: inc/class.periodical.php:320 
    8181msgid "Daily" 
    8282msgstr "Une fois par jour" 
    8383 
    84 #: inc/class.periodical.php:319 
     84#: inc/class.periodical.php:321 
    8585msgid "Weekly" 
    8686msgstr "Une fois par semaine" 
    8787 
    88 #: inc/class.periodical.php:320 
     88#: inc/class.periodical.php:322 
    8989msgid "Monthly" 
    9090msgstr "Un fois par mois" 
    9191 
    92 #: inc/class.periodical.php:352 
    93 #: inc/lib.index.pager.php:76 
     92#: inc/class.periodical.php:354 
     93#: inc/lib.index.pager.php:78 
    9494msgid "Unknow frequence" 
    9595msgstr "Fréquence inconnue" 
    9696 
    97 #: inc/index.addperiod.php:18 
     97#: inc/index.addperiod.php:20 
    9898msgid "One post per day" 
    9999msgstr "Un billet par jour" 
    100100 
    101 #: inc/index.addperiod.php:32 
     101#: inc/index.addperiod.php:34 
    102102msgid "Period title is already taken" 
    103103msgstr "Le titre de la période est déjà pris" 
    104104 
    105 #: inc/index.addperiod.php:36 
    106 #: inc/index.editperiod.php:53 
     105#: inc/index.addperiod.php:38 
     106#: inc/index.editperiod.php:55 
    107107msgid "Period title is required" 
    108108msgstr "Le titre de la période est requis" 
    109109 
    110 #: inc/index.addperiod.php:40 
    111 #: inc/index.editperiod.php:57 
     110#: inc/index.addperiod.php:42 
     111#: inc/index.editperiod.php:59 
    112112msgid "Start date must be older than end date" 
    113113msgstr "La date de début doit être plus ancienne que la date de fin" 
    114114 
    115 #: inc/index.addperiod.php:69 
    116 #: inc/index.editperiod.php:312 
    117 #: inc/index.periods.php:128 
    118 #: inc/index.setting.php:67 
    119 #: index.php:48 
     115#: 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 
    120120msgid "New period" 
    121121msgstr "Nouvelle période" 
    122122 
    123 #: inc/index.addperiod.php:79 
    124 #: inc/index.editperiod.php:323 
     123#: inc/index.addperiod.php:81 
     124#: inc/index.editperiod.php:325 
    125125msgid "Next update:" 
    126126msgstr "Prochaine mise à jour :" 
    127127 
    128 #: inc/index.addperiod.php:81 
    129 #: inc/index.editperiod.php:325 
     128#: inc/index.addperiod.php:83 
     129#: inc/index.editperiod.php:327 
    130130msgid "End date:" 
    131131msgstr "Date de fin :" 
    132132 
    133 #: inc/index.addperiod.php:84 
    134 #: inc/index.editperiod.php:328 
     133#: inc/index.addperiod.php:86 
     134#: inc/index.editperiod.php:330 
    135135msgid "Publication frequency:" 
    136136msgstr "Fréquence de publication :" 
    137137 
    138 #: inc/index.addperiod.php:86 
    139 #: inc/index.editperiod.php:330 
     138#: inc/index.addperiod.php:88 
     139#: inc/index.editperiod.php:332 
    140140msgid "Number of entries to publish every time:" 
    141141msgstr "Nombre de billets à publier à chaque fois :" 
    142142 
    143 #: inc/index.editperiod.php:193 
    144 #: inc/index.setting.php:16 
    145 #: inc/lib.index.pager.php:113 
     143#: inc/index.editperiod.php:195 
     144#: inc/index.setting.php:18 
     145#: inc/lib.index.pager.php:115 
    146146msgid "Create date" 
    147147msgstr "Date de création" 
    148148 
    149 #: inc/index.editperiod.php:311 
    150 #: index.php:47 
     149#: inc/index.editperiod.php:313 
     150#: index.php:49 
    151151msgid "Edit period" 
    152152msgstr "Modifier la période" 
    153153 
    154 #: inc/index.editperiod.php:317 
     154#: inc/index.editperiod.php:319 
    155155msgid "Period" 
    156156msgstr "Période" 
    157157 
    158 #: inc/index.periods.php:54 
    159 #: inc/lib.index.pager.php:35 
     158#: inc/index.periods.php:56 
     159#: inc/lib.index.pager.php:37 
    160160msgid "Next update" 
    161161msgstr "Prochaine mise à jour" 
    162162 
    163 #: inc/index.periods.php:55 
    164 #: inc/lib.index.pager.php:39 
     163#: inc/index.periods.php:57 
     164#: inc/lib.index.pager.php:41 
    165165msgid "End date" 
    166166msgstr "Date de fin" 
    167167 
    168 #: inc/index.periods.php:56 
     168#: inc/index.periods.php:58 
    169169msgid "Frequence" 
    170170msgstr "Fréquence" 
    171171 
    172 #: inc/index.periods.php:66 
     172#: inc/index.periods.php:68 
    173173msgid "empty periods" 
    174174msgstr "vider les périodes" 
    175175 
    176 #: inc/index.periods.php:67 
     176#: inc/index.periods.php:69 
    177177msgid "delete periods" 
    178178msgstr "effacer les périodes" 
    179179 
    180 #: inc/index.periods.php:169 
     180#: inc/index.periods.php:171 
    181181msgid "Selected periods action:" 
    182182msgstr "Action sur les périodes selectionnées :" 
    183183 
    184 #: inc/index.setting.php:58 
     184#: inc/index.setting.php:60 
    185185msgid "Please wait" 
    186186msgstr "Veuillez patienter" 
    187187 
    188 #: inc/index.setting.php:66 
    189 #: index.php:45 
    190 #: index.php:60 
     188#: inc/index.setting.php:68 
     189#: index.php:47 
     190#: index.php:62 
    191191msgid "Settings" 
    192192msgstr "Paramètres" 
    193193 
    194 #: inc/index.setting.php:72 
     194#: inc/index.setting.php:74 
    195195msgid "Extension" 
    196196msgstr "Extension" 
    197197 
    198 #: inc/index.setting.php:75 
     198#: inc/index.setting.php:77 
    199199msgid "Enable extension" 
    200200msgstr "Activer l'extension" 
    201201 
    202 #: inc/index.setting.php:78 
     202#: inc/index.setting.php:80 
    203203msgid "Dates of published entries" 
    204204msgstr "Dates de billets publiés" 
    205205 
    206 #: inc/index.setting.php:81 
     206#: inc/index.setting.php:83 
    207207msgid "Update post date" 
    208208msgstr "Mettre à jour la date du billet" 
    209209 
    210 #: inc/index.setting.php:84 
     210#: inc/index.setting.php:86 
    211211msgid "Update post url" 
    212212msgstr "Mettre à jour l'URL du billet" 
    213213 
    214 #: inc/index.setting.php:87 
     214#: inc/index.setting.php:89 
    215215msgid "Order of publication of entries" 
    216216msgstr "Ordre de publication des billets" 
    217217 
    218 #: inc/lib.index.pager.php:22 
     218#: inc/lib.index.pager.php:24 
    219219msgid "No period" 
    220220msgstr "Pas de période" 
    221221 
    222 #: inc/lib.index.pager.php:34 
     222#: inc/lib.index.pager.php:36 
    223223msgid "Name" 
    224224msgstr "Nom" 
    225225 
    226 #: inc/lib.index.pager.php:36 
     226#: inc/lib.index.pager.php:38 
    227227msgid "Frequency" 
    228228msgstr "Fréquence" 
    229229 
    230 #: inc/lib.index.pager.php:37 
     230#: inc/lib.index.pager.php:39 
    231231msgid "Publications" 
    232232msgstr "Publications" 
    233233 
    234 #: inc/lib.index.pager.php:73 
     234#: inc/lib.index.pager.php:75 
    235235msgid "view related entries" 
    236236msgstr "voir les billets liés" 
    237237 
    238 #: inc/lib.index.pager.php:81 
     238#: inc/lib.index.pager.php:83 
    239239msgid "edit period" 
    240240msgstr "modifier la période" 
    241241 
    242 #: inc/lib.periodical.socialmewriter.php:21 
     242#: inc/lib.periodical.socialmewriter.php:23 
    243243msgid "New periodical publication" 
    244244msgstr "Nouvelle publication périodique" 
    245245 
    246 #: inc/lib.periodical.socialmewriter.php:22 
     246#: inc/lib.periodical.socialmewriter.php:24 
    247247msgid "When an entry is published on a period" 
    248248msgstr "Lorsque qu'un billet st marqué comme publié par une période" 
    249249 
    250 #: index.php:29 
     250#: index.php:31 
    251251msgid "Configuration successfully saved" 
    252252msgstr "Configuration sauvegardée avec succès" 
    253253 
    254 #: index.php:30 
     254#: index.php:32 
    255255msgid "Periods successfully deleted" 
    256256msgstr "Périodes mises à jour avec succès" 
    257257 
    258 #: index.php:31 
     258#: index.php:33 
    259259msgid "Periods successfully emptied" 
    260260msgstr "Périodes vidées avec succès" 
    261261 
    262 #: index.php:32 
     262#: index.php:34 
    263263msgid "Period successfully updated" 
    264264msgstr "Periode mise à jour avec succès" 
    265265 
    266 #: index.php:33 
     266#: index.php:35 
    267267msgid "Period successfully created" 
    268268msgstr "Période créée avec succès" 
    269269 
    270 #: index.php:34 
     270#: index.php:36 
    271271msgid "Entries successfully published" 
    272272msgstr "Billets publié avec succès" 
    273273 
    274 #: index.php:35 
     274#: index.php:37 
    275275msgid "Entries successfully unpublished" 
    276276msgstr "Billets mis hors ligne avec succès" 
    277277 
    278 #: index.php:36 
     278#: index.php:38 
    279279msgid "Entries successfully removed from periodical" 
    280280msgstr "Billets retirés des publications avec succès" 
  • plugins/periodical/release.txt

    r2927 r3136  
     12013.06.30 
     2 * Small fix and typo 
     3 
    140.5 20110130 
    25 * Fixed install on nightly buid 
Note: See TracChangeset for help on using the changeset viewer.

Sites map