Dotclear

Changeset 3406


Ignore:
Timestamp:
02/04/18 18:41:12 (5 years ago)
Author:
Moe
Message:

1.4-alpha10

Location:
plugins/subscribeToComments
Files:
13 added
1 deleted
13 edited

Legend:

Unmodified
Added
Removed
  • plugins/subscribeToComments/_admin.php

    r3120 r3406  
    33# 
    44# This file is part of Subscribe to comments. 
    5 # Copyright (C) 2008,2009,2010 Moe (http://gniark.net/) 
     5# Copyright (C) 2008-2018 Moe (http://gniark.net/) 
    66# 
    77# Subscribe to comments is free software; you can redistribute it and/or modify 
     
    2626if (!defined('DC_CONTEXT_ADMIN')) {return;} 
    2727 
    28 $_menu['Plugins']->addItem(__('Subscribe to comments'), 
     28$_menu['Blog']->addItem(__('Subscribe to comments'), 
    2929     'plugin.php?p=subscribeToComments', 
    3030     'index.php?pf=subscribeToComments/icon.png', 
     
    9898     } 
    9999      
    100      public static function exportFull(&$core,&$exp) 
     100     public static function exportFull($core,$exp) 
    101101     { 
    102102          $exp->exportTable('comment_subscriber'); 
    103103     } 
    104104      
    105      public static function exportSingle(&$core,&$exp,$blog_id) 
     105     public static function exportSingle($core,$exp,$blog_id) 
    106106     { 
    107107          $exp->export('comment_subscriber', 
     
    110110     } 
    111111      
    112      public static function importInit(&$bk,&$core) 
     112     public static function importInit($bk,$core) 
    113113     { 
    114114          $bk->cur_comment_subscriber = 
     
    116116     } 
    117117      
    118      public static function importFull(&$line,&$bk,&$core) 
     118     public static function importFull($line,$bk,$core) 
    119119     {     
    120120          if (self::$delete) { 
     
    138138     } 
    139139      
    140      public static function importSingle(&$line,&$bk,&$core) 
     140     public static function importSingle($line,$bk,$core) 
    141141     { 
    142142          if ($line->__name == 'comment_subscriber') 
     
    165165     } 
    166166} 
    167 ?> 
     167 
     168$core->addBehavior('adminDashboardFavorites','subscribeToCommentsDashboardFavorites'); 
     169 
     170function subscribeToCommentsDashboardFavorites($core,$favs) 
     171{ 
     172     $favs->register('subscribeToComments', array( 
     173          'title' => __('Subscribe to comments'), 
     174          'url' => 'plugin.php?p=subscribeToComments', 
     175          'small-icon' => 'index.php?pf=subscribeToComments/icon.png', 
     176          'large-icon' => 'index.php?pf=subscribeToComments/icon-big.png', 
     177          'permissions' => 'usage,contentadmin' 
     178     )); 
     179} 
  • plugins/subscribeToComments/_define.php

    r3126 r3406  
    22# ***** BEGIN LICENSE BLOCK ***** 
    33# 
    4 # This file is part of Subscribe to comments, a plugin for Dotclear 2 
    5 # Copyright (C) 2008,2009,2010 Moe (http://gniark.net/) 
     4# This file is part of Subscribe to comments. 
     5# Copyright (C) 2008-2018 Moe (http://gniark.net/) 
    66# 
    7 # Subscribe to comments is free software; you can redistribute it and/or 
    8 # modify it under the terms of the GNU General Public License v2.0 
    9 # as published by the Free Software Foundation. 
     7# Subscribe to comments is free software; you can redistribute it and/or modify 
     8# it under the terms of the GNU General Public License as published by 
     9# the Free Software Foundation; either version 3 of the License, or 
     10# (at your option) any later version. 
    1011# 
    1112# Subscribe to comments is distributed in the hope that it will be useful, 
    1213# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
     14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1415# GNU General Public License for more details. 
    1516# 
    16 # You should have received a copy of the GNU General Public 
    17 # License along with this program. If not, see 
    18 # <http://www.gnu.org/licenses/>. 
     17# You should have received a copy of the GNU General Public License 
     18# along with this program.  If not, see <http://www.gnu.org/licenses/>. 
    1919# 
    20 # Icon (icon.png) and images are from Silk Icons : 
    21 # <http://www.famfamfam.com/lab/icons/silk/> 
     20# Icon (icon.png) is from Silk Icons : http://www.famfamfam.com/lab/icons/silk/ 
    2221# 
    23 # Inspired by Subscribe to Comments for WordPress : 
    24 # <http://txfx.net/code/wordpress/subscribe-to-comments/> 
     22# Inspired by http://txfx.net/code/wordpress/subscribe-to-comments/ 
    2523# 
    2624# ***** END LICENSE BLOCK ***** 
     
    3230     /* Description*/                "Subscribe to comments by email", 
    3331     /* Author */                    "Moe (http://gniark.net/)", 
    34      /* Version */                   '1.4-alpha8', 
    35      /* Permissions */               'admin' 
     32     /* Version */                   '1.4-alpha10', 
     33     /* Properties */ 
     34     array( 
     35          'permissions' => 'admin', 
     36          'type' => 'plugin', 
     37          'dc_min' => '2.11', 
     38          'support' => 'http://lab.dotclear.org/wiki/plugin/subscribeToComments', 
     39          'details' => 'http://plugins.dotaddict.org/dc2/details/subscribeToComments' 
     40          ) 
    3641); 
    37 ?> 
  • plugins/subscribeToComments/_install.php

    r3122 r3406  
    22# ***** BEGIN LICENSE BLOCK ***** 
    33# 
    4 # This file is part of Subscribe to comments, a plugin for Dotclear 2 
    5 # Copyright (C) 2008,2009,2010 Moe (http://gniark.net/) 
     4# This file is part of Subscribe to comments. 
     5# Copyright (C) 2008-2018 Moe (http://gniark.net/) 
    66# 
    7 # Subscribe to comments is free software; you can redistribute it and/or 
    8 # modify it under the terms of the GNU General Public License v2.0 
    9 # as published by the Free Software Foundation. 
     7# Subscribe to comments is free software; you can redistribute it and/or modify 
     8# it under the terms of the GNU General Public License as published by 
     9# the Free Software Foundation; either version 3 of the License, or 
     10# (at your option) any later version. 
    1011# 
    1112# Subscribe to comments is distributed in the hope that it will be useful, 
    1213# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
     14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1415# GNU General Public License for more details. 
    1516# 
    16 # You should have received a copy of the GNU General Public 
    17 # License along with this program. If not, see 
    18 # <http://www.gnu.org/licenses/>. 
     17# You should have received a copy of the GNU General Public License 
     18# along with this program.  If not, see <http://www.gnu.org/licenses/>. 
    1919# 
    20 # Icon (icon.png) and images are from Silk Icons : 
    21 # <http://www.famfamfam.com/lab/icons/silk/> 
     20# Icon (icon.png) is from Silk Icons : http://www.famfamfam.com/lab/icons/silk/ 
    2221# 
    23 # Inspired by Subscribe to Comments for WordPress : 
    24 # <http://txfx.net/code/wordpress/subscribe-to-comments/> 
     22# Inspired by http://txfx.net/code/wordpress/subscribe-to-comments/ 
    2523# 
    2624# ***** END LICENSE BLOCK ***** 
     
    150148 
    151149return true; 
    152 ?> 
  • plugins/subscribeToComments/_prepend.php

    r2594 r3406  
    22# ***** BEGIN LICENSE BLOCK ***** 
    33# 
    4 # This file is part of Subscribe to comments, a plugin for Dotclear 2 
    5 # Copyright (C) 2008,2009,2010 Moe (http://gniark.net/) 
     4# This file is part of Subscribe to comments. 
     5# Copyright (C) 2008-2018 Moe (http://gniark.net/) 
    66# 
    7 # Subscribe to comments is free software; you can redistribute it and/or 
    8 # modify it under the terms of the GNU General Public License v2.0 
    9 # as published by the Free Software Foundation. 
     7# Subscribe to comments is free software; you can redistribute it and/or modify 
     8# it under the terms of the GNU General Public License as published by 
     9# the Free Software Foundation; either version 3 of the License, or 
     10# (at your option) any later version. 
    1011# 
    1112# Subscribe to comments is distributed in the hope that it will be useful, 
    1213# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
     14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1415# GNU General Public License for more details. 
    1516# 
    16 # You should have received a copy of the GNU General Public 
    17 # License along with this program. If not, see 
    18 # <http://www.gnu.org/licenses/>. 
     17# You should have received a copy of the GNU General Public License 
     18# along with this program.  If not, see <http://www.gnu.org/licenses/>. 
    1919# 
    20 # Icon (icon.png) and images are from Silk Icons : 
    21 # <http://www.famfamfam.com/lab/icons/silk/> 
     20# Icon (icon.png) is from Silk Icons : http://www.famfamfam.com/lab/icons/silk/ 
    2221# 
    23 # Inspired by Subscribe to Comments for WordPress : 
    24 # <http://txfx.net/code/wordpress/subscribe-to-comments/> 
     22# Inspired by http://txfx.net/code/wordpress/subscribe-to-comments/ 
    2523# 
    2624# ***** END LICENSE BLOCK ***** 
     
    4038     '^subscribetocomments(?:/(.+))?$', 
    4139     array('subscribeToCommentsDocument','page')); 
    42  
    43 ?> 
  • plugins/subscribeToComments/_public.php

    r3120 r3406  
    22# ***** BEGIN LICENSE BLOCK ***** 
    33# 
    4 # This file is part of Subscribe to comments, a plugin for Dotclear 2 
    5 # Copyright (C) 2008,2009,2010 Moe (http://gniark.net/) 
     4# This file is part of Subscribe to comments. 
     5# Copyright (C) 2008-2018 Moe (http://gniark.net/) 
    66# 
    7 # Subscribe to comments is free software; you can redistribute it and/or 
    8 # modify it under the terms of the GNU General Public License v2.0 
    9 # as published by the Free Software Foundation. 
     7# Subscribe to comments is free software; you can redistribute it and/or modify 
     8# it under the terms of the GNU General Public License as published by 
     9# the Free Software Foundation; either version 3 of the License, or 
     10# (at your option) any later version. 
    1011# 
    1112# Subscribe to comments is distributed in the hope that it will be useful, 
    1213# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
     14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1415# GNU General Public License for more details. 
    1516# 
    16 # You should have received a copy of the GNU General Public 
    17 # License along with this program. If not, see 
    18 # <http://www.gnu.org/licenses/>. 
     17# You should have received a copy of the GNU General Public License 
     18# along with this program.  If not, see <http://www.gnu.org/licenses/>. 
    1919# 
    20 # Icon (icon.png) and images are from Silk Icons : 
    21 # <http://www.famfamfam.com/lab/icons/silk/> 
     20# Icon (icon.png) is from Silk Icons : http://www.famfamfam.com/lab/icons/silk/ 
    2221# 
    23 # Inspired by Subscribe to Comments for WordPress : 
    24 # <http://txfx.net/code/wordpress/subscribe-to-comments/> 
     22# Inspired by http://txfx.net/code/wordpress/subscribe-to-comments/ 
    2523# 
    2624# ***** END LICENSE BLOCK ***** 
     
    109107     } 
    110108} 
    111  
    112 ?> 
  • plugins/subscribeToComments/inc/class.subscriber.php

    r3120 r3406  
    22# ***** BEGIN LICENSE BLOCK ***** 
    33# 
    4 # This file is part of Subscribe to comments, a plugin for Dotclear 2 
    5 # Copyright (C) 2008,2009,2010 Moe (http://gniark.net/) 
    6 # 
    7 # Subscribe to comments is free software; you can redistribute it and/or 
    8 # modify it under the terms of the GNU General Public License v2.0 
    9 # as published by the Free Software Foundation. 
     4# This file is part of Subscribe to comments. 
     5# Copyright (C) 2008-2018 Moe (http://gniark.net/) 
     6# 
     7# Subscribe to comments is free software; you can redistribute it and/or modify 
     8# it under the terms of the GNU General Public License as published by 
     9# the Free Software Foundation; either version 3 of the License, or 
     10# (at your option) any later version. 
    1011# 
    1112# Subscribe to comments is distributed in the hope that it will be useful, 
    1213# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
     14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1415# GNU General Public License for more details. 
    1516# 
    16 # You should have received a copy of the GNU General Public 
    17 # License along with this program. If not, see 
    18 # <http://www.gnu.org/licenses/>. 
    19 # 
    20 # Icon (icon.png) and images are from Silk Icons : 
    21 # <http://www.famfamfam.com/lab/icons/silk/> 
    22 # 
    23 # Inspired by Subscribe to Comments for WordPress : 
    24 # <http://txfx.net/code/wordpress/subscribe-to-comments/> 
     17# You should have received a copy of the GNU General Public License 
     18# along with this program.  If not, see <http://www.gnu.org/licenses/>. 
     19# 
     20# Icon (icon.png) is from Silk Icons : http://www.famfamfam.com/lab/icons/silk/ 
     21# 
     22# Inspired by http://txfx.net/code/wordpress/subscribe-to-comments/ 
    2523# 
    2624# ***** END LICENSE BLOCK ***** 
     
    535533     } 
    536534} 
    537  
    538 ?> 
  • plugins/subscribeToComments/inc/lib.subscribeToComments.document.php

    r3120 r3406  
    22# ***** BEGIN LICENSE BLOCK ***** 
    33# 
    4 # This file is part of Subscribe to comments, a plugin for Dotclear 2 
    5 # Copyright (C) 2008,2009,2010 Moe (http://gniark.net/) 
    6 # 
    7 # Subscribe to comments is free software; you can redistribute it and/or 
    8 # modify it under the terms of the GNU General Public License v2.0 
    9 # as published by the Free Software Foundation. 
     4# This file is part of Subscribe to comments. 
     5# Copyright (C) 2008-2018 Moe (http://gniark.net/) 
     6# 
     7# Subscribe to comments is free software; you can redistribute it and/or modify 
     8# it under the terms of the GNU General Public License as published by 
     9# the Free Software Foundation; either version 3 of the License, or 
     10# (at your option) any later version. 
    1011# 
    1112# Subscribe to comments is distributed in the hope that it will be useful, 
    1213# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
     14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1415# GNU General Public License for more details. 
    1516# 
    16 # You should have received a copy of the GNU General Public 
    17 # License along with this program. If not, see 
    18 # <http://www.gnu.org/licenses/>. 
    19 # 
    20 # Icon (icon.png) and images are from Silk Icons : 
    21 # <http://www.famfamfam.com/lab/icons/silk/> 
    22 # 
    23 # Inspired by Subscribe to Comments for WordPress : 
    24 # <http://txfx.net/code/wordpress/subscribe-to-comments/> 
     17# You should have received a copy of the GNU General Public License 
     18# along with this program.  If not, see <http://www.gnu.org/licenses/>. 
     19# 
     20# Icon (icon.png) is from Silk Icons : http://www.famfamfam.com/lab/icons/silk/ 
     21# 
     22# Inspired by http://txfx.net/code/wordpress/subscribe-to-comments/ 
    2523# 
    2624# ***** END LICENSE BLOCK ***** 
     
    210208          # /message 
    211209           
    212           $core->tpl->setPath($core->tpl->getPath(), 
    213                dirname(__FILE__).'/../default-templates/'); 
     210        $tplset = $core->themes->moduleInfo($core->blog->settings->system->theme,'tplset'); 
     211        if (!empty($tplset) && is_dir(dirname(__FILE__).'/../default-templates/'.$tplset)) { 
     212            $core->tpl->setPath($core->tpl->getPath(), dirname(__FILE__).'/../default-templates/'.$tplset); 
     213        } else { 
     214            $core->tpl->setPath($core->tpl->getPath(), dirname(__FILE__).'/../default-templates/'.DC_DEFAULT_TPLSET); 
     215        } 
    214216           
    215217          self::serveDocument('subscribetocomments.html','text/html',false,false); 
    216218     } 
    217219} 
    218  
    219 ?> 
  • plugins/subscribeToComments/inc/lib.subscribeToComments.php

    r3123 r3406  
    22# ***** BEGIN LICENSE BLOCK ***** 
    33# 
    4 # This file is part of Subscribe to comments, a plugin for Dotclear 2 
    5 # Copyright (C) 2008,2009,2010 Moe (http://gniark.net/) 
    6 # 
    7 # Subscribe to comments is free software; you can redistribute it and/or 
    8 # modify it under the terms of the GNU General Public License v2.0 
    9 # as published by the Free Software Foundation. 
     4# This file is part of Subscribe to comments. 
     5# Copyright (C) 2008-2018 Moe (http://gniark.net/) 
     6# 
     7# Subscribe to comments is free software; you can redistribute it and/or modify 
     8# it under the terms of the GNU General Public License as published by 
     9# the Free Software Foundation; either version 3 of the License, or 
     10# (at your option) any later version. 
    1011# 
    1112# Subscribe to comments is distributed in the hope that it will be useful, 
    1213# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
     14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1415# GNU General Public License for more details. 
    1516# 
    16 # You should have received a copy of the GNU General Public 
    17 # License along with this program. If not, see 
    18 # <http://www.gnu.org/licenses/>. 
    19 # 
    20 # Icon (icon.png) and images are from Silk Icons : 
    21 # <http://www.famfamfam.com/lab/icons/silk/> 
    22 # 
    23 # Inspired by Subscribe to Comments for WordPress : 
    24 # <http://txfx.net/code/wordpress/subscribe-to-comments/> 
     17# You should have received a copy of the GNU General Public License 
     18# along with this program.  If not, see <http://www.gnu.org/licenses/>. 
     19# 
     20# Icon (icon.png) is from Silk Icons : http://www.famfamfam.com/lab/icons/silk/ 
     21# 
     22# Inspired by http://txfx.net/code/wordpress/subscribe-to-comments/ 
    2523# 
    2624# ***** END LICENSE BLOCK ***** 
     
    477475     } 
    478476} 
    479  
    480 ?> 
  • plugins/subscribeToComments/inc/lib.subscribeToComments.tpl.php

    r3120 r3406  
    22# ***** BEGIN LICENSE BLOCK ***** 
    33# 
    4 # This file is part of Subscribe to comments, a plugin for Dotclear 2 
    5 # Copyright (C) 2008,2009,2010 Moe (http://gniark.net/) 
    6 # 
    7 # Subscribe to comments is free software; you can redistribute it and/or 
    8 # modify it under the terms of the GNU General Public License v2.0 
    9 # as published by the Free Software Foundation. 
     4# This file is part of Subscribe to comments. 
     5# Copyright (C) 2008-2018 Moe (http://gniark.net/) 
     6# 
     7# Subscribe to comments is free software; you can redistribute it and/or modify 
     8# it under the terms of the GNU General Public License as published by 
     9# the Free Software Foundation; either version 3 of the License, or 
     10# (at your option) any later version. 
    1011# 
    1112# Subscribe to comments is distributed in the hope that it will be useful, 
    1213# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
     14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1415# GNU General Public License for more details. 
    1516# 
    16 # You should have received a copy of the GNU General Public 
    17 # License along with this program. If not, see 
    18 # <http://www.gnu.org/licenses/>. 
    19 # 
    20 # Icon (icon.png) and images are from Silk Icons : 
    21 # <http://www.famfamfam.com/lab/icons/silk/> 
    22 # 
    23 # Inspired by Subscribe to Comments for WordPress : 
    24 # <http://txfx.net/code/wordpress/subscribe-to-comments/> 
     17# You should have received a copy of the GNU General Public License 
     18# along with this program.  If not, see <http://www.gnu.org/licenses/>. 
     19# 
     20# Icon (icon.png) is from Silk Icons : http://www.famfamfam.com/lab/icons/silk/ 
     21# 
     22# Inspired by http://txfx.net/code/wordpress/subscribe-to-comments/ 
    2523# 
    2624# ***** END LICENSE BLOCK ***** 
     
    349347     } 
    350348} 
    351  
    352 ?> 
  • plugins/subscribeToComments/index.php

    r3126 r3406  
    22# ***** BEGIN LICENSE BLOCK ***** 
    33# 
    4 # This file is part of Subscribe to comments, a plugin for Dotclear 2 
    5 # Copyright (C) 2008,2009,2010 Moe (http://gniark.net/) 
     4# This file is part of Subscribe to comments. 
     5# Copyright (C) 2008-2018 Moe (http://gniark.net/) 
    66# 
    7 # Subscribe to comments is free software; you can redistribute it and/or 
    8 # modify it under the terms of the GNU General Public License v2.0 
    9 # as published by the Free Software Foundation. 
     7# Subscribe to comments is free software; you can redistribute it and/or modify 
     8# it under the terms of the GNU General Public License as published by 
     9# the Free Software Foundation; either version 3 of the License, or 
     10# (at your option) any later version. 
    1011# 
    1112# Subscribe to comments is distributed in the hope that it will be useful, 
    1213# but WITHOUT ANY WARRANTY; without even the implied warranty of 
    13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
     14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    1415# GNU General Public License for more details. 
    1516# 
    16 # You should have received a copy of the GNU General Public 
    17 # License along with this program. If not, see 
    18 # <http://www.gnu.org/licenses/>. 
     17# You should have received a copy of the GNU General Public License 
     18# along with this program.  If not, see <http://www.gnu.org/licenses/>. 
    1919# 
    20 # Icon (icon.png) and images are from Silk Icons : 
    21 # <http://www.famfamfam.com/lab/icons/silk/> 
     20# Icon (icon.png) is from Silk Icons : http://www.famfamfam.com/lab/icons/silk/ 
    2221# 
    23 # Inspired by Subscribe to Comments for WordPress : 
    24 # <http://txfx.net/code/wordpress/subscribe-to-comments/> 
     22# Inspired by http://txfx.net/code/wordpress/subscribe-to-comments/ 
    2523# 
    2624# ***** END LICENSE BLOCK ***** 
     
    2927 
    3028l10n::set(dirname(__FILE__).'/locales/'.$_lang.'/admin'); 
     29 
     30$page_title = __('Subscribe to comments'); 
    3131 
    3232# format tables' tbody 
     
    300300<html> 
    301301<head> 
    302      <title><?php echo __('Subscribe to comments'); ?></title> 
     302     <title><?php echo $page_title; ?></title> 
    303303     <?php echo dcPage::jsPageTabs($default_tab); ?> 
    304304     <style type="text/css"> 
     
    347347                
    348348               $('input[name="delete_subscribers"]').click(function() { 
    349                     return window.confirm('Delete selected subscribers?'); 
     349                    return window.confirm('<?php echo __('Delete selected subscribers?'); ?>'); 
    350350               }); 
    351351          }); 
     
    354354</head> 
    355355<body> 
    356  
    357      <h2><?php echo html::escapeHTML($core->blog->name).' &rsaquo; '.__('Subscribe to comments'); ?></h2> 
    358  
    359      <?php  
    360           if (!empty($msg)) {echo '<p class="message">'.$msg.'</p>';} 
    361      ?> 
     356<?php 
     357 
     358     echo dcPage::breadcrumb( 
     359          array( 
     360               html::escapeHTML($core->blog->name) => '', 
     361               '<span class="page-title">'.$page_title.'</span>' => '' 
     362          )); 
     363 
     364if (!empty($msg)) { 
     365  dcPage::success($msg); 
     366} 
     367?> 
    362368 
    363369<?php if (!$settings->subscribetocomments_active) 
     
    746752          ?> 
    747753     </div> 
    748       
    749      <div id="help" title="<?php echo __('Help'); ?>"> 
    750           <div class="help-content"> 
    751                <h2><?php echo(__('Help')); ?></h2> 
    752                <p><?php printf(__('%s send notification emails to the subscribers of a post when:'),__('Subscribe to comments')); ?></p> 
    753                <ul> 
    754                     <li><?php echo(__('a comment is posted and published immediatly')); ?></li> 
    755                     <li><?php echo(__('a pending comment is published')); ?> 
    756                </ul> 
    757                <p><?php echo __('If this weblog is hosted by free.fr, create a <code>/sessions/</code> directory in the root directory of the website.'); ?></p> 
    758                <p><?php echo __('To use this plugin, you have to test if the server can send emails:'); ?></p> 
     754 
     755     <div class="multi-part" id="test" title="<?php echo __('Test'); ?>"> 
     756          <h3><?php echo(__('Test')); ?></h3> 
     757          <p><?php echo __('To use this plugin, you have to test if the server can send emails:'); ?></p> 
    759758               <form method="post" action="<?php echo http::getSelfURI(); ?>"> 
    760759                    <fieldset> 
     
    772771                    </fieldset> 
    773772               </form> 
    774                <hr /> 
    775                <p><?php printf(__('Inspired by <a href="%1$s">%2$s</a>'), 
    776                     'http://txfx.net/code/wordpress/subscribe-to-comments/', 
    777                     __('Subscribe to comments for WordPress')); ?></p> 
    778           </div> 
    779      </div> 
    780       
     773  </div> 
     774 
    781775     <hr /> 
    782776      
     
    789783          <?php printf(__('View the %s page'),__('Subscribe to comments')); ?></a>    
    790784     </p> 
     785     <?php dcPage::helpBlock('subscribeToComments'); ?> 
    791786<?php } ?> 
    792787</body> 
  • plugins/subscribeToComments/locales/fr/admin.po

    r3120 r3406  
     1# Language: Français 
     2# Module: subscribeToComments - 1.4-alpha10 
     3# Date: 2018-01-19 18:34:18 
     4# Translated with translater 2017.05.10 
    15 
    26msgid "" 
    37msgstr "" 
    48"Content-Type: text/plain; charset=UTF-8\n" 
    5 "Project-Id-Version: subscribeToComments 1.4-alpha1\n" 
     9"Project-Id-Version: subscribeToComments 1.4-alpha10\n" 
    610"POT-Creation-Date: \n" 
    7 "PO-Revision-Date: 2010-08-30T14:15:40+00:00\n" 
    8 "Last-Translator: Ubuntu\n" 
     11"PO-Revision-Date: 2018-01-19T18:34:18+00:00\n" 
     12"Last-Translator: brol\n" 
    913"Language-Team: \n" 
    1014"MIME-Version: 1.0\n" 
    1115"Content-Transfer-Encoding: 8bit\n" 
    12  
     16"Plural-Forms: nplurals=2; plural=(n > 1);\n" 
     17 
     18#: _admin.php:28 
     19#: _admin.php:173 
     20#: inc/lib.subscribeToComments.tpl.php:290 
     21#: inc/lib.subscribeToComments.tpl.php:330 
     22#: index.php:30 
     23#: index.php:64 
     24#: index.php:87 
     25#: index.php:166 
     26#: index.php:377 
     27#: index.php:390 
     28#: index.php:402 
     29#: index.php:559 
     30#: index.php:605 
     31#: index.php:778 
     32#: index.php:783 
     33msgid "Subscribe to comments" 
     34msgstr "Abonnement aux commentaires" 
     35 
     36#: _admin.php:95 
    1337msgid "sent" 
    1438msgstr "envoyé" 
    1539 
     40#: inc/lib.subscribeToComments.php:169 
    1641msgid "Hello [email]," 
    1742msgstr "Bonjour [email]," 
    1843 
     44#: inc/lib.subscribeToComments.php:171 
    1945msgid "To manage your subscriptions, change your email address or block emails, click here: [manageurl]" 
    2046msgstr "Pour gérer vos abonnements, changer votre adresse email ou bloquer les emails, cliquez ici : [manageurl]" 
    2147 
     48#: inc/lib.subscribeToComments.php:175 
    2249msgid "Your account on [blogname]" 
    2350msgstr "Votre compte sur [blogname]" 
    2451 
     52#: inc/lib.subscribeToComments.php:182 
    2553msgid "here are some informations about your account on [blogname]:" 
    2654msgstr "voici quelques informations à propos de votre compte sur [blogname] :" 
    2755 
     56#: inc/lib.subscribeToComments.php:184 
    2857msgid "Email address: [email]" 
    2958msgstr "Adresse email : [email]" 
    3059 
     60#: inc/lib.subscribeToComments.php:195 
    3161msgid "Subscribed to [posttitle] - [blogname]" 
    3262msgstr "Abonné à [posttitle] - [blogname]" 
    3363 
     64#: inc/lib.subscribeToComments.php:201 
    3465msgid "you subscribed to [posttitle]: [posturl]" 
    3566msgstr "vous vous êtes abonné à [posttitle] : [posturl]" 
    3667 
     68#: inc/lib.subscribeToComments.php:210 
    3769msgid "New comment on [posttitle] - [blogname]" 
    3870msgstr "Nouveau commentaire sur [posttitle] - [blogname]" 
    3971 
     72#: inc/lib.subscribeToComments.php:216 
    4073msgid "a new comment has been posted by [commentauthor] on [posttitle]:" 
    4174msgstr "un nouveau commentaire a été posté par [commentauthor] sur [posttitle] :" 
    4275 
     76#: inc/lib.subscribeToComments.php:221 
    4377msgid "View the comment: [commenturl]" 
    4478msgstr "Voir le commentaire : [commenturl]" 
    4579 
     80#: inc/lib.subscribeToComments.php:222 
    4681msgid "View the post: [posturl]" 
    4782msgstr "Voir le billet : [posturl]" 
    4883 
     84#: inc/lib.subscribeToComments.php:231 
    4985msgid "Change email address on [blogname]" 
    5086msgstr "Changer l'adresse email sur [blogname]" 
    5187 
     88#: inc/lib.subscribeToComments.php:237 
    5289msgid "you have requested to change the email address of your subscriptions to [newemail], click on this link: [emailurl]" 
    5390msgstr "vous avez demandé à changer l'adresse email de vos abonnements pour [newemail], cliquez sur ce lien : [emailurl]" 
    5491 
     92#: inc/lib.subscribeToComments.php:239 
    5593msgid "This link is valid for 24 hours." 
    5694msgstr "Ce lien est valide pendant 24 heures." 
    5795 
     96#: index.php:84 
    5897msgid "Blog URL" 
    5998msgstr "URL du blog" 
    6099 
     100#: index.php:92 
     101#: index.php:96 
    61102msgid "Post title" 
    62103msgstr "Titre du billet" 
    63104 
     105#: index.php:93 
     106#: index.php:97 
    64107msgid "Post URL" 
    65108msgstr "URL du billet" 
    66109 
     110#: index.php:98 
    67111msgid "URL to new comment" 
    68112msgstr "URL vers le nouveau commentaire" 
    69113 
     114#: index.php:99 
    70115msgid "Comment author" 
    71116msgstr "Auteur du commentaire" 
    72117 
     118#: index.php:100 
    73119msgid "Comment content" 
    74120msgstr "Contenu du commentaire" 
    75121 
     122#: index.php:107 
    76123msgid "URL to confirm the change of email address" 
    77124msgstr "URL pour confirmer le changement d'adresse email" 
    78125 
     126#: index.php:126 
    79127msgid "(blog language)" 
    80128msgstr "(langue du blog)" 
    81129 
     130#: index.php:165 
    82131msgid "Test email from your blog - %s" 
    83132msgstr "Email test depuis votre blog - %s" 
    84133 
     134#: index.php:166 
    85135msgid "The plugin % works." 
    86136msgstr "Le plugin %s fonctionne." 
    87137 
     138#: index.php:279 
    88139msgid "Test email sent." 
    89140msgstr "Email test envoyé." 
    90141 
     142#: index.php:283 
    91143msgid "Settings restored." 
    92144msgstr "Paramètres restaurés." 
    93145 
    94 msgid "Configuration successfully updated." 
    95 msgstr "Configuration mise à jour avec succès." 
    96  
     146#: index.php:345 
    97147msgid "Restore default settings? The old settings will be deleted." 
    98148msgstr "Restaurer les paramètres par défaut ? Les anciens paramètres seront supprimés." 
    99149 
     150#: index.php:349 
     151msgid "Delete selected subscribers?" 
     152msgstr "Supprimer les abonnés sélectionnés ?" 
     153 
     154#: index.php:372 
    100155msgid "The plugin is disabled." 
    101156msgstr "Ce plugin n'est pas activé." 
    102157 
     158#: index.php:377 
     159#: index.php:390 
    103160msgid "Enable %s" 
    104161msgstr "Activer %s" 
    105162 
    106 msgid "Save configuration" 
    107 msgstr "Enregistrer la configuration" 
    108  
     163#: index.php:384 
    109164msgid "Settings" 
    110165msgstr "Paramètres" 
    111166 
     167#: index.php:394 
    112168msgid "Define From: header of outbound emails:" 
    113169msgstr "Définir l'entête From: des emails sortants&nbsp;:" 
    114170 
     171#: index.php:400 
    115172msgid "Post types" 
    116173msgstr "Types de billets" 
    117174 
     175#: index.php:401 
    118176msgid "Enable %s with the following post types:" 
    119177msgstr "Activer %s pour les types de billets suivants&nbsp;:" 
    120178 
     179#: index.php:420 
    121180msgid "No entry yet. Create a new entry." 
    122181msgstr "Pas encore de billet. Créez un nouveau billet." 
    123182 
     183#: index.php:424 
    124184msgid "Email formatting" 
    125185msgstr "Format des emails" 
    126186 
     187#: index.php:425 
    127188msgid "You can format the emails using the following tags." 
    128189msgstr "Vous pouvez formater les emails en utilisant les balises suivantes." 
    129190 
     191#: index.php:426 
    130192msgid "Each tag will be replaced by the associated value." 
    131193msgstr "Chaque balise sera remplacée par la valeur associée." 
    132194 
     195#: index.php:427 
    133196msgid "Tags available in all the contexts" 
    134197msgstr "Balises disponibles dans tous les contextes" 
    135198 
    136 msgid "Tag" 
    137 msgstr "Balise" 
    138  
     199#: index.php:439 
    139200msgid "Email sent when an account is created or if a subscriber request it" 
    140201msgstr "Email envoyé quand un compte est créé ou si un abonné le demande" 
    141202 
     203#: index.php:441 
     204#: index.php:474 
     205#: index.php:501 
     206#: index.php:528 
    142207msgid "Subject:" 
    143208msgstr "Sujet&nbsp;:" 
    144209 
     210#: index.php:457 
    145211msgid "Email sent when a subscriber subscribe to the comments of a post" 
    146212msgstr "Email envoyé quand un abonné s'abonne aux commentaires d'un billet" 
    147213 
     214#: index.php:462 
    148215msgid "Send an email for each subscription to the comments of a post" 
    149216msgstr "Envoyer un email pour chaque abonnement aux commentaires d'un billet" 
    150217 
     218#: index.php:464 
     219#: index.php:491 
     220#: index.php:518 
    151221msgid "Available tags" 
    152222msgstr "Balises disponibles" 
    153223 
     224#: index.php:490 
    154225msgid "Email sent when a new comment is published" 
    155226msgstr "Email envoyé quand un nouveau commentaire est publié" 
    156227 
     228#: index.php:517 
    157229msgid "Email sent when a subscriber want to change his email address" 
    158230msgstr "Email envoyé quand un abonné veut changer d'adresse email" 
    159231 
     232#: index.php:548 
     233#: index.php:549 
    160234msgid "Display" 
    161235msgstr "Affichage" 
    162236 
     237#: index.php:551 
    163238msgid "This plugin needs to add some code on the post page." 
    164239msgstr "Ce plugin a besoin d'ajouter du code sur la page du billet." 
    165240 
     241#: index.php:552 
    166242msgid "This can be done automatically by checking the following checkboxes." 
    167243msgstr "Cela peut être fait automatiquement en cochant les cases suivantes." 
    168244 
     245#: index.php:553 
    169246msgid "If you want to customize the display on the post page (the post.hml file of your theme), uncheck the following checkboxes and follow the instructions under each checkbox:" 
    170247msgstr "Si vous voulez modifier l'affichage sur la page du billet, décochez les cases suivantes et suivez les instructions sous chaque case&nbsp;:" 
    171248 
     249#: index.php:554 
    172250msgid "You can use the plugin <strong>%s</strong> to edit the file <strong>post.html</strong>." 
    173251msgstr "Vous pouvez utiliser le plugin <strong>%s</strong> pour éditer le fichier <strong>post.html</strong>." 
    174252 
     253#: index.php:558 
    175254msgid "Install %s on the post page." 
    176255msgstr "Installer %s sur la page du billet." 
    177256 
     257#: index.php:564 
    178258msgid "Add the <strong>%s</strong> checkbox in the comment form" 
    179259msgstr "Ajouter la case <strong>%s</strong> dans le formulaire de commentaire" 
    180260 
     261#: index.php:570 
    181262msgid "insert this in the comment form (suggestion: in the <code>&lt;fieldset&gt;</code> before the <code>&lt;/form&gt;</code> tag):" 
    182263msgstr "insérez ceci dans le formulaire de commentaire (suggestion&nbsp;: dans le <code>&lt;fieldset&gt;</code> avant la balise <code>&lt;/form&gt;</code>)&nbsp;:" 
    183264 
     265#: index.php:579 
    184266msgid "If the <strong>%s</strong> checkbox is not displayed correctly and the blog use Blowup or Blue Silence theme, check this:" 
    185267msgstr "Si la case <strong>%s</strong> n'est pas affichée correctement et que le blog utilise le thème Blowup ou Blue Silence, cochez ceci&nbsp;:" 
    186268 
     269#: index.php:586 
    187270msgid "Add a CSS rule to style the <strong>%1$s</strong> checkbox" 
    188271msgstr "Ajouter une règle CSS pour styler la case <strong>%1$s</strong>" 
    189272 
     273#: index.php:592 
    190274msgid "add this CSS rule at the end of the file <strong>style.css</strong>" 
    191275msgstr "ajoutez cette règle CSS à la fin du fichier <strong>style.css</strong>" 
    192276 
     277#: index.php:604 
    193278msgid "Add a link to the <strong>%s</strong> page between the comments and the trackbacks" 
    194279msgstr "Ajouter un lien vers la page <strong>%s</strong> entre les commentaires et les rétroliens" 
    195280 
     281#: index.php:608 
    196282msgid "The code will appear after the %s tag." 
    197283msgstr "Le code apparaîtra après la balise %s." 
    198284 
     285#: index.php:611 
    199286msgid "If you don't want the code to appear, add the %s attribute to the %s tag." 
    200287msgstr "Pour que le code n'apparaisse pas, ajoutez l'attribut %s à la balise %s." 
    201288 
     289#: index.php:617 
    202290msgid "insert this anywhere on the page (suggestion: just after the <code>&lt;/form&gt;</code> tag):" 
    203291msgstr "insérez ceci n'importe où dans la page (suggestion&nbsp;: juste après la balise <code>&lt;/form&gt;</code>)&nbsp;:" 
    204292 
     293#: index.php:619 
    205294msgid "The default id of the returned block is <code>subscribetocomments_block</code>, you can specify your own id and class." 
    206295msgstr "L'id par défaut du bloc retourné est <code>subscribetocomments_block</code>, vous pouvez choisir votre propre id et classe." 
    207296 
     297#: index.php:637 
    208298msgid "Restore" 
    209299msgstr "Restaurer" 
    210300 
     301#: index.php:638 
     302#: index.php:648 
    211303msgid "Restore default settings" 
    212304msgstr "Restaurer les paramètres par défaut" 
    213305 
     306#: index.php:652 
     307#: index.php:653 
    214308msgid "Subscribers" 
    215309msgstr "Abonnés" 
    216310 
    217 msgid "%s send notification emails to the subscribers of a post when:" 
    218 msgstr "%s envoie des emails de notification aux abonnés d'un billet quand&nbsp;:" 
    219  
    220 msgid "a comment is posted and published immediatly" 
    221 msgstr "un commentaire est posté et publié immédiatement" 
    222  
    223 msgid "a pending comment is published" 
    224 msgstr "un commentaire en attente est publié à partir de l'interface d'administation" 
    225  
    226 msgid "If this weblog is hosted by free.fr, create a <code>/sessions/</code> directory in the root directory of the website." 
    227 msgstr "Si ce blog est hébergé chez free.fr, créez un répertoire <code>/sessions/</code> dans le répertoire racine du site." 
    228  
     311#: index.php:755 
     312#: index.php:756 
     313#: index.php:760 
     314msgid "Test" 
     315msgstr "Test" 
     316 
     317#: index.php:757 
    229318msgid "To use this plugin, you have to test if the server can send emails:" 
    230319msgstr "Pour utiliser ce plugin, vous devez tester si le serveur peut envoyer des emails&nbsp;:" 
    231320 
    232 msgid "Test" 
    233 msgstr "Test" 
    234  
     321#: index.php:770 
    235322msgid "Try to send an email" 
    236323msgstr "Essayer d'envoyer un email" 
    237324 
    238 msgid "Inspired by <a href=\"%1$s\">%2$s</a>" 
    239 msgstr "Inspiré par <a href=\"%1$s\">%2$s</a>" 
    240  
    241 msgid "Subscribe to comments for WordPress" 
    242 msgstr "Subscribe to comments pour WordPress" 
    243  
     325#: index.php:778 
    244326msgid "URL of the %s page:" 
    245327msgstr "URL de la page %s&nbsp;:" 
    246328 
     329#: index.php:783 
    247330msgid "View the %s page" 
    248331msgstr "Voir la page %s" 
  • plugins/subscribeToComments/locales/fr/main.po

    r2594 r3406  
     1# Language: Français 
     2# Module: subscribeToComments - 1.4-alpha10 
     3# Date: 2018-01-19 18:34:18 
     4# Translated with translater 2017.05.10 
    15 
    26msgid "" 
    37msgstr "" 
    48"Content-Type: text/plain; charset=UTF-8\n" 
    5 "Project-Id-Version: subscribeToComments 1.4-alpha1\n" 
     9"Project-Id-Version: subscribeToComments 1.4-alpha10\n" 
    610"POT-Creation-Date: \n" 
    7 "PO-Revision-Date: 2010-08-30T14:15:40+00:00\n" 
    8 "Last-Translator: Ubuntu\n" 
     11"PO-Revision-Date: 2018-01-19T18:34:18+00:00\n" 
     12"Last-Translator: brol\n" 
    913"Language-Team: \n" 
    1014"MIME-Version: 1.0\n" 
    1115"Content-Transfer-Encoding: 8bit\n" 
     16"Plural-Forms: nplurals=2; plural=(n > 1);\n" 
    1217 
     18#: _admin.php:28 
     19#: _admin.php:173 
     20#: inc/lib.subscribeToComments.tpl.php:290 
     21#: inc/lib.subscribeToComments.tpl.php:330 
     22#: index.php:30 
     23#: index.php:64 
     24#: index.php:87 
     25#: index.php:166 
     26#: index.php:377 
     27#: index.php:390 
     28#: index.php:402 
     29#: index.php:559 
     30#: index.php:605 
     31#: index.php:778 
     32#: index.php:783 
    1333msgid "Subscribe to comments" 
    1434msgstr "Abonnement aux commentaires" 
    1535 
     36#: _admin.php:88 
    1637msgid "<img src=\"images/check-off.png\" alt=\"%1$s\" title=\"%1$s\" /> Notification email not sent, click on <strong>%2$s</strong>." 
    1738msgstr "<img src=\"images/check-off.png\" alt=\"%1$s\" title=\"%1$s\" /> Email de notification non envoyé, cliquez sur <strong>%2$s</strong>." 
    1839 
     40#: _admin.php:89 
    1941msgid "not sent" 
    2042msgstr "non envoyé" 
    2143 
     44#: _admin.php:89 
     45msgid "save" 
     46msgstr "enregistrer" 
     47 
     48#: _admin.php:94 
    2249msgid "<img src=\"images/check-on.png\" alt=\"%1$s\" title=\"%1$s\" /> Notification email sent." 
    2350msgstr "<img src=\"images/check-on.png\" alt=\"%1$s\" title=\"%1$s\" /> Email de notification envoyé." 
    2451 
     52#: _admin.php:97 
     53msgid "Subscribe to comments:" 
     54msgstr "Abonnement aux commentaires :" 
     55 
     56#: inc/class.subscriber.php:65 
     57#: inc/class.subscriber.php:315 
    2558msgid "Invalid email address or key." 
    2659msgstr "Adresse email ou clé invalide." 
    2760 
     61#: inc/class.subscriber.php:151 
     62#: inc/lib.subscribeToComments.document.php:62 
    2863msgid "Invalid post ID." 
    2964msgstr "Identifiant du billet invalide." 
    3065 
     66#: inc/class.subscriber.php:156 
    3167msgid "Invalid post." 
    3268msgstr "Billet invalide." 
    3369 
     70#: inc/class.subscriber.php:200 
     71#: inc/class.subscriber.php:502 
    3472msgid "This email address already exists." 
    3573msgstr "Cette adresse email existe déjà." 
    3674 
     75#: inc/class.subscriber.php:396 
    3776msgid "Reload the page" 
    3877msgstr "Recharger la page" 
    3978 
     79#: inc/class.subscriber.php:495 
     80#: inc/lib.subscribeToComments.php:56 
    4081msgid "Invalid key." 
    4182msgstr "Clé invalide." 
    4283 
     84#: inc/class.subscriber.php:506 
    4385msgid "Link expired, request another email." 
    4486msgstr "Lien périmé, demandez un autre email." 
    4587 
     88#: inc/lib.subscribeToComments.php:43 
    4689msgid "Invalid email address." 
    4790msgstr "Adresse email invalide." 
    4891 
     92#: inc/lib.subscribeToComments.tpl.php:243 
     93#: index.php:47 
     94#: index.php:565 
     95#: index.php:580 
     96#: index.php:587 
    4997msgid "Receive following comments by email" 
    5098msgstr "Recevoir les commentaires suivants par email" 
    5199 
     100#: index.php:87 
    52101msgid "%s's page URL" 
    53102msgstr "URL de la page %s" 
    54103 
     104#: index.php:105 
    55105msgid "New email address" 
    56106msgstr "Nouvelle adresse email" 
    57107 
     108#: index.php:291 
     109msgid "Subscribers deleted successfully." 
     110msgstr "Abonnés supprimés avec succès" 
     111 
     112#: index.php:620 
     113msgid "Examples:" 
     114msgstr "Exemples :" 
     115 
     116#: index.php:686 
    58117msgid "no subscriber" 
    59118msgstr "pas d'abonné" 
    60119 
     120#: index.php:695 
     121msgid "Click on a subscriber in order to manage its subscriptions." 
     122msgstr "Cliquer sur un abonné pour modifier ses abonnements" 
     123 
     124#: index.php:699 
     125#: index.php:748 
     126msgid "Delete subscribers" 
     127msgstr "Supprimer les abonnés" 
     128 
     129#: index.php:703 
     130msgid "Subscriber" 
     131msgstr "Abonné" 
     132 
     133#: index.php:705 
     134msgid "First comment date" 
     135msgstr "Date du premier commentaire" 
     136 
     137#: index.php:716 
     138msgid "Subscribers with at least one comment marked as spam:" 
     139msgstr "Abonnés avec au moins un commentaire marqué comme indésirable&nbsp;:" 
     140 
     141#: index.php:726 
     142msgid "Subscribers with no comments:" 
     143msgstr "Abonnés sans commentaires&nbsp;:" 
     144 
     145#: index.php:767 
    61146msgid "This will send a email, if you don't receive it, try to <a href=\"%s\">change the way Dotclear send emails</a>." 
    62147msgstr "Ceci enverra un email, si vous ne le recevez pas, essayez de <a href=\"%s\">changer la façon dont Dotclear envoie les emails</a>" 
    63148 
    64 msgid "Example:" 
    65 msgstr "Exemple&nbsp;:" 
     149msgid "Subscribe to comments by email" 
     150msgstr "Abonnement aux commentaires par email" 
    66151 
    67 msgid "Home" 
    68 msgstr "Accueil" 
    69  
    70 msgid "invert selection" 
    71 msgstr "inverser la sélection" 
    72  
    73 msgid "Logout" 
    74 msgstr "Déconnexion" 
    75  
    76 msgid "select all" 
    77 msgstr "tout sélectionner" 
    78  
    79 msgid "Subscribe to" 
    80 msgstr "S'abonner à" 
    81  
  • plugins/subscribeToComments/locales/fr/public.po

    r2594 r3406  
     1# Language: Français 
     2# Module: subscribeToComments - 1.4-alpha10 
     3# Date: 2018-01-19 18:34:17 
     4# Translated with translater 2017.05.10 
    15 
    26msgid "" 
    37msgstr "" 
    48"Content-Type: text/plain; charset=UTF-8\n" 
    5 "Project-Id-Version: subscribeToComments 1.4-alpha1\n" 
     9"Project-Id-Version: subscribeToComments 1.4-alpha10\n" 
    610"POT-Creation-Date: \n" 
    7 "PO-Revision-Date: 2010-08-30T14:15:40+00:00\n" 
    8 "Last-Translator: Ubuntu\n" 
     11"PO-Revision-Date: 2018-01-19T18:34:17+00:00\n" 
     12"Last-Translator: brol\n" 
    913"Language-Team: \n" 
    1014"MIME-Version: 1.0\n" 
    1115"Content-Transfer-Encoding: 8bit\n" 
     16"Plural-Forms: nplurals=2; plural=(n > 1);\n" 
    1217 
     18#: default-templates/currywurst/subscribetocomments.html:4 
     19#: default-templates/currywurst/subscribetocomments.html:57 
     20#: default-templates/mustek/subscribetocomments.html:4 
     21#: default-templates/mustek/subscribetocomments.html:57 
     22#: inc/lib.subscribeToComments.tpl.php:290 
     23#: inc/lib.subscribeToComments.tpl.php:330 
     24msgid "Subscribe to comments" 
     25msgstr "Abonnement aux commentaires" 
     26 
     27#: default-templates/currywurst/subscribetocomments.html:37 
     28#: default-templates/mustek/subscribetocomments.html:37 
     29msgid "Remove selected subscriptions?" 
     30msgstr "Supprimer les abonnements sélectionnés ?" 
     31 
     32#: default-templates/currywurst/subscribetocomments.html:42 
     33#: default-templates/mustek/subscribetocomments.html:42 
     34msgid "Allow emails?" 
     35msgstr "Autoriser les emails ?" 
     36 
     37#: default-templates/currywurst/subscribetocomments.html:43 
     38#: default-templates/mustek/subscribetocomments.html:43 
     39msgid "Block emails?" 
     40msgstr "Bloquer les emails ?" 
     41 
     42#: default-templates/currywurst/subscribetocomments.html:44 
     43#: default-templates/mustek/subscribetocomments.html:44 
     44msgid "Delete the account?" 
     45msgstr "Supprimer le compte ?" 
     46 
     47#: default-templates/currywurst/subscribetocomments.html:71 
     48#: default-templates/currywurst/subscribetocomments.html:104 
     49#: default-templates/mustek/subscribetocomments.html:71 
     50#: default-templates/mustek/subscribetocomments.html:104 
     51msgid "Get back to" 
     52msgstr "Revenir à" 
     53 
     54#: default-templates/currywurst/subscribetocomments.html:74 
     55#: default-templates/currywurst/subscribetocomments.html:107 
     56#: default-templates/mustek/subscribetocomments.html:74 
     57#: default-templates/mustek/subscribetocomments.html:107 
     58msgid "Subscribe to one entry" 
     59msgstr "S'abonner à un billet" 
     60 
     61#: default-templates/currywurst/subscribetocomments.html:79 
     62#: default-templates/mustek/subscribetocomments.html:79 
     63msgid "To login, you have to click on the link given in previously sent emails." 
     64msgstr "Pour vous connecter, vous devez cliquer sur le lien donné dans les emails envoyés précédemment." 
     65 
     66#: default-templates/currywurst/subscribetocomments.html:80 
     67#: default-templates/mustek/subscribetocomments.html:80 
     68msgid "Click on the button below to resend informations to your email address." 
     69msgstr "Cliquez sur le bouton ci-dessous pour renvoyer les informations à votre adresse email." 
     70 
     71#: default-templates/currywurst/subscribetocomments.html:95 
     72#: default-templates/mustek/subscribetocomments.html:95 
     73msgid "Resend account informations to this email address" 
     74msgstr "Renvoyer les informations du compte à cette adresse email" 
     75 
     76#: default-templates/currywurst/subscribetocomments.html:101 
     77#: default-templates/mustek/subscribetocomments.html:101 
     78msgid "Logout" 
     79msgstr "Déconnexion" 
     80 
     81#: default-templates/currywurst/subscribetocomments.html:115 
     82#: default-templates/mustek/subscribetocomments.html:115 
     83msgid "Remove subscriptions" 
     84msgstr "Supprimer des abonnements" 
     85 
     86#: default-templates/currywurst/subscribetocomments.html:132 
     87#: default-templates/mustek/subscribetocomments.html:132 
     88msgid "invert selection" 
     89msgstr "inverser la sélection" 
     90 
     91#: default-templates/currywurst/subscribetocomments.html:134 
     92#: default-templates/mustek/subscribetocomments.html:134 
     93msgid "Remove selected subscriptions" 
     94msgstr "Supprimer les abonnements sélectionnés" 
     95 
     96#: default-templates/currywurst/subscribetocomments.html:137 
     97#: default-templates/mustek/subscribetocomments.html:137 
     98msgid "Account" 
     99msgstr "Compte" 
     100 
     101#: default-templates/currywurst/subscribetocomments.html:139 
     102#: default-templates/currywurst/subscribetocomments.html:149 
     103#: default-templates/mustek/subscribetocomments.html:139 
     104#: default-templates/mustek/subscribetocomments.html:149 
     105msgid "Change email address" 
     106msgstr "Changer l'adresse email" 
     107 
     108#: default-templates/currywurst/subscribetocomments.html:142 
     109#: default-templates/mustek/subscribetocomments.html:142 
     110msgid "New email address:" 
     111msgstr "Nouvelle adresse email :" 
     112 
     113#: default-templates/currywurst/subscribetocomments.html:146 
     114#: default-templates/mustek/subscribetocomments.html:146 
     115msgid "You'll have 24 hours to click on the link sent to the new email address to confirm the change." 
     116msgstr "Vous aurez 24 heures pour cliquer sur le lien envoyé à la nouvelle adresse email pour confirmer le changement." 
     117 
     118#: default-templates/currywurst/subscribetocomments.html:153 
     119#: default-templates/mustek/subscribetocomments.html:153 
     120msgid "Allow emails" 
     121msgstr "Autoriser les emails" 
     122 
     123#: default-templates/currywurst/subscribetocomments.html:156 
     124#: default-templates/mustek/subscribetocomments.html:156 
     125msgid "Block emails" 
     126msgstr "Bloquer les emails" 
     127 
     128#: default-templates/currywurst/subscribetocomments.html:160 
     129#: default-templates/mustek/subscribetocomments.html:160 
     130msgid "Delete all subscriptions and the account" 
     131msgstr "Supprimer tous les abonnements et le compte" 
     132 
     133#: inc/lib.subscribeToComments.document.php:173 
    13134msgid "Account informations sent" 
    14135msgstr "Informations sur le compte envoyées" 
    15136 
     137#: inc/lib.subscribeToComments.document.php:176 
    16138msgid "Subscriptions removed" 
    17139msgstr "Abonnements effacés" 
    18140 
     141#: inc/lib.subscribeToComments.document.php:179 
    19142msgid "Logged out" 
    20143msgstr "Déconnecté" 
    21144 
     145#: inc/lib.subscribeToComments.document.php:182 
     146#: inc/lib.subscribeToComments.tpl.php:237 
     147#: index.php:49 
    22148msgid "Logged in" 
    23149msgstr "Connecté" 
    24150 
     151#: inc/lib.subscribeToComments.document.php:185 
    25152msgid "Emails blocked" 
    26153msgstr "Emails bloqués" 
    27154 
     155#: inc/lib.subscribeToComments.document.php:188 
    28156msgid "Emails allowed" 
    29157msgstr "Emails autorisés" 
    30158 
     159#: inc/lib.subscribeToComments.document.php:191 
    31160msgid "An email has been sent to the new email address" 
    32161msgstr "Un email a été envoyé à la nouvelle adresse email" 
    33162 
     163#: inc/lib.subscribeToComments.document.php:194 
    34164msgid "Email address changed" 
    35165msgstr "Adresse email changée" 
    36166 
     167#: inc/lib.subscribeToComments.document.php:197 
    37168msgid "Account deleted" 
    38169msgstr "Compte supprimé" 
    39170 
     171#: inc/lib.subscribeToComments.document.php:200 
    40172msgid "Subscribed to the entry" 
    41173msgstr "Abonné au billet" 
    42174 
     175#: inc/lib.subscribeToComments.tpl.php:297 
     176#: inc/lib.subscribeToComments.tpl.php:308 
     177#: inc/lib.subscribeToComments.tpl.php:337 
     178#: index.php:69 
    43179msgid "Subscribe to receive following comments by email or manage subscriptions" 
    44180msgstr "S'abonner pour recevoir les commentaires suivants par email ou modifier les abonnements" 
    45181 
     182#: inc/lib.subscribeToComments.tpl.php:301 
     183#: inc/lib.subscribeToComments.tpl.php:309 
     184#: inc/lib.subscribeToComments.tpl.php:341 
     185#: index.php:73 
    46186msgid "Subscribe to receive following comments by email" 
    47187msgstr "S'abonner pour recevoir les commentaires suivants par email" 
    48188 
    49 msgid "Error:" 
    50 msgstr "Erreur&nbsp;:" 
    51  
    52 msgid "Account" 
    53 msgstr "Compte" 
    54  
    55 msgid "Allow emails?" 
    56 msgstr "Autoriser les emails ?" 
    57  
    58 msgid "Allow emails" 
    59 msgstr "Autoriser les emails" 
    60  
    61 msgid "Block emails?" 
    62 msgstr "Bloquer les emails ?" 
    63  
    64 msgid "Block emails" 
    65 msgstr "Bloquer les emails" 
    66  
    67 msgid "Change email address" 
    68 msgstr "Changer l'adresse email" 
    69  
    70 msgid "Click on the button below to resend informations to your email address." 
    71 msgstr "Cliquez sur le bouton ci-dessous pour renvoyer les informations à votre adresse email." 
    72  
    73 msgid "Delete all subscriptions and the account" 
    74 msgstr "Supprimer tous les abonnements et le compte" 
    75  
    76 msgid "Delete the account?" 
    77 msgstr "Supprimer le compte ?" 
    78  
    79 msgid "Entries" 
    80 msgstr "Billets" 
    81  
    82 msgid "Get back to" 
    83 msgstr "Revenir à" 
    84  
    85 msgid "Remove selected subscriptions?" 
    86 msgstr "Supprimer les abonnements sélectionnés ?" 
    87  
    88 msgid "Remove selected subscriptions" 
    89 msgstr "Supprimer les abonnements sélectionnés" 
    90  
    91 msgid "Remove subscriptions" 
    92 msgstr "Supprimer des abonnements" 
    93  
    94 msgid "Subscribe to one entry" 
    95 msgstr "S'abonner à un billet" 
    96  
    97 msgid "To login, you have to click on the link given in previously sent emails." 
    98 msgstr "Pour vous connecter, vous devez cliquer sur le lien donné dans les emails envoyés précédemment." 
    99  
    100 msgid "You'll have 24 hours to click on the link sent to the new email address to confirm the change." 
    101 msgstr "Vous aurez 24 heures pour cliquer sur le lien envoyé à la nouvelle adresse email pour confirmer le changement." 
    102  
    103 msgid "Resend account informations to this email address" 
    104 msgstr "Renvoyer les informations du compte à cette adresse email" 
    105  
Note: See TracChangeset for help on using the changeset viewer.

Sites map