Changeset 3406
- Timestamp:
- 02/04/18 18:41:12 (5 years ago)
- Location:
- plugins/subscribeToComments
- Files:
-
- 13 added
- 1 deleted
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/subscribeToComments/_admin.php
r3120 r3406 3 3 # 4 4 # This file is part of Subscribe to comments. 5 # Copyright (C) 2008 ,2009,2010Moe (http://gniark.net/)5 # Copyright (C) 2008-2018 Moe (http://gniark.net/) 6 6 # 7 7 # Subscribe to comments is free software; you can redistribute it and/or modify … … 26 26 if (!defined('DC_CONTEXT_ADMIN')) {return;} 27 27 28 $_menu[' Plugins']->addItem(__('Subscribe to comments'),28 $_menu['Blog']->addItem(__('Subscribe to comments'), 29 29 'plugin.php?p=subscribeToComments', 30 30 'index.php?pf=subscribeToComments/icon.png', … … 98 98 } 99 99 100 public static function exportFull( &$core,&$exp)100 public static function exportFull($core,$exp) 101 101 { 102 102 $exp->exportTable('comment_subscriber'); 103 103 } 104 104 105 public static function exportSingle( &$core,&$exp,$blog_id)105 public static function exportSingle($core,$exp,$blog_id) 106 106 { 107 107 $exp->export('comment_subscriber', … … 110 110 } 111 111 112 public static function importInit( &$bk,&$core)112 public static function importInit($bk,$core) 113 113 { 114 114 $bk->cur_comment_subscriber = … … 116 116 } 117 117 118 public static function importFull( &$line,&$bk,&$core)118 public static function importFull($line,$bk,$core) 119 119 { 120 120 if (self::$delete) { … … 138 138 } 139 139 140 public static function importSingle( &$line,&$bk,&$core)140 public static function importSingle($line,$bk,$core) 141 141 { 142 142 if ($line->__name == 'comment_subscriber') … … 165 165 } 166 166 } 167 ?> 167 168 $core->addBehavior('adminDashboardFavorites','subscribeToCommentsDashboardFavorites'); 169 170 function 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 2 2 # ***** BEGIN LICENSE BLOCK ***** 3 3 # 4 # This file is part of Subscribe to comments , a plugin for Dotclear 25 # Copyright (C) 2008 ,2009,2010Moe (http://gniark.net/)4 # This file is part of Subscribe to comments. 5 # Copyright (C) 2008-2018 Moe (http://gniark.net/) 6 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. 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. 10 11 # 11 12 # Subscribe to comments is distributed in the hope that it will be useful, 12 13 # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 15 # GNU General Public License for more details. 15 16 # 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/>. 19 19 # 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/ 22 21 # 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/ 25 23 # 26 24 # ***** END LICENSE BLOCK ***** … … 32 30 /* Description*/ "Subscribe to comments by email", 33 31 /* 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 ) 36 41 ); 37 ?> -
plugins/subscribeToComments/_install.php
r3122 r3406 2 2 # ***** BEGIN LICENSE BLOCK ***** 3 3 # 4 # This file is part of Subscribe to comments , a plugin for Dotclear 25 # Copyright (C) 2008 ,2009,2010Moe (http://gniark.net/)4 # This file is part of Subscribe to comments. 5 # Copyright (C) 2008-2018 Moe (http://gniark.net/) 6 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. 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. 10 11 # 11 12 # Subscribe to comments is distributed in the hope that it will be useful, 12 13 # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 15 # GNU General Public License for more details. 15 16 # 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/>. 19 19 # 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/ 22 21 # 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/ 25 23 # 26 24 # ***** END LICENSE BLOCK ***** … … 150 148 151 149 return true; 152 ?> -
plugins/subscribeToComments/_prepend.php
r2594 r3406 2 2 # ***** BEGIN LICENSE BLOCK ***** 3 3 # 4 # This file is part of Subscribe to comments , a plugin for Dotclear 25 # Copyright (C) 2008 ,2009,2010Moe (http://gniark.net/)4 # This file is part of Subscribe to comments. 5 # Copyright (C) 2008-2018 Moe (http://gniark.net/) 6 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. 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. 10 11 # 11 12 # Subscribe to comments is distributed in the hope that it will be useful, 12 13 # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 15 # GNU General Public License for more details. 15 16 # 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/>. 19 19 # 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/ 22 21 # 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/ 25 23 # 26 24 # ***** END LICENSE BLOCK ***** … … 40 38 '^subscribetocomments(?:/(.+))?$', 41 39 array('subscribeToCommentsDocument','page')); 42 43 ?> -
plugins/subscribeToComments/_public.php
r3120 r3406 2 2 # ***** BEGIN LICENSE BLOCK ***** 3 3 # 4 # This file is part of Subscribe to comments , a plugin for Dotclear 25 # Copyright (C) 2008 ,2009,2010Moe (http://gniark.net/)4 # This file is part of Subscribe to comments. 5 # Copyright (C) 2008-2018 Moe (http://gniark.net/) 6 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. 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. 10 11 # 11 12 # Subscribe to comments is distributed in the hope that it will be useful, 12 13 # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 15 # GNU General Public License for more details. 15 16 # 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/>. 19 19 # 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/ 22 21 # 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/ 25 23 # 26 24 # ***** END LICENSE BLOCK ***** … … 109 107 } 110 108 } 111 112 ?> -
plugins/subscribeToComments/inc/class.subscriber.php
r3120 r3406 2 2 # ***** BEGIN LICENSE BLOCK ***** 3 3 # 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. 10 11 # 11 12 # Subscribe to comments is distributed in the hope that it will be useful, 12 13 # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 15 # GNU General Public License for more details. 15 16 # 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/ 25 23 # 26 24 # ***** END LICENSE BLOCK ***** … … 535 533 } 536 534 } 537 538 ?> -
plugins/subscribeToComments/inc/lib.subscribeToComments.document.php
r3120 r3406 2 2 # ***** BEGIN LICENSE BLOCK ***** 3 3 # 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. 10 11 # 11 12 # Subscribe to comments is distributed in the hope that it will be useful, 12 13 # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 15 # GNU General Public License for more details. 15 16 # 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/ 25 23 # 26 24 # ***** END LICENSE BLOCK ***** … … 210 208 # /message 211 209 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 } 214 216 215 217 self::serveDocument('subscribetocomments.html','text/html',false,false); 216 218 } 217 219 } 218 219 ?> -
plugins/subscribeToComments/inc/lib.subscribeToComments.php
r3123 r3406 2 2 # ***** BEGIN LICENSE BLOCK ***** 3 3 # 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. 10 11 # 11 12 # Subscribe to comments is distributed in the hope that it will be useful, 12 13 # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 15 # GNU General Public License for more details. 15 16 # 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/ 25 23 # 26 24 # ***** END LICENSE BLOCK ***** … … 477 475 } 478 476 } 479 480 ?> -
plugins/subscribeToComments/inc/lib.subscribeToComments.tpl.php
r3120 r3406 2 2 # ***** BEGIN LICENSE BLOCK ***** 3 3 # 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. 10 11 # 11 12 # Subscribe to comments is distributed in the hope that it will be useful, 12 13 # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 15 # GNU General Public License for more details. 15 16 # 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/ 25 23 # 26 24 # ***** END LICENSE BLOCK ***** … … 349 347 } 350 348 } 351 352 ?> -
plugins/subscribeToComments/index.php
r3126 r3406 2 2 # ***** BEGIN LICENSE BLOCK ***** 3 3 # 4 # This file is part of Subscribe to comments , a plugin for Dotclear 25 # Copyright (C) 2008 ,2009,2010Moe (http://gniark.net/)4 # This file is part of Subscribe to comments. 5 # Copyright (C) 2008-2018 Moe (http://gniark.net/) 6 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. 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. 10 11 # 11 12 # Subscribe to comments is distributed in the hope that it will be useful, 12 13 # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 15 # GNU General Public License for more details. 15 16 # 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/>. 19 19 # 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/ 22 21 # 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/ 25 23 # 26 24 # ***** END LICENSE BLOCK ***** … … 29 27 30 28 l10n::set(dirname(__FILE__).'/locales/'.$_lang.'/admin'); 29 30 $page_title = __('Subscribe to comments'); 31 31 32 32 # format tables' tbody … … 300 300 <html> 301 301 <head> 302 <title><?php echo __('Subscribe to comments'); ?></title>302 <title><?php echo $page_title; ?></title> 303 303 <?php echo dcPage::jsPageTabs($default_tab); ?> 304 304 <style type="text/css"> … … 347 347 348 348 $('input[name="delete_subscribers"]').click(function() { 349 return window.confirm(' Delete selected subscribers?');349 return window.confirm('<?php echo __('Delete selected subscribers?'); ?>'); 350 350 }); 351 351 }); … … 354 354 </head> 355 355 <body> 356 357 <h2><?php echo html::escapeHTML($core->blog->name).' › '.__('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 364 if (!empty($msg)) { 365 dcPage::success($msg); 366 } 367 ?> 362 368 363 369 <?php if (!$settings->subscribetocomments_active) … … 746 752 ?> 747 753 </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> 759 758 <form method="post" action="<?php echo http::getSelfURI(); ?>"> 760 759 <fieldset> … … 772 771 </fieldset> 773 772 </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 781 775 <hr /> 782 776 … … 789 783 <?php printf(__('View the %s page'),__('Subscribe to comments')); ?></a> 790 784 </p> 785 <?php dcPage::helpBlock('subscribeToComments'); ?> 791 786 <?php } ?> 792 787 </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 1 5 2 6 msgid "" 3 7 msgstr "" 4 8 "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" 6 10 "POT-Creation-Date: \n" 7 "PO-Revision-Date: 201 0-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" 9 13 "Language-Team: \n" 10 14 "MIME-Version: 1.0\n" 11 15 "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 33 msgid "Subscribe to comments" 34 msgstr "Abonnement aux commentaires" 35 36 #: _admin.php:95 13 37 msgid "sent" 14 38 msgstr "envoyé" 15 39 40 #: inc/lib.subscribeToComments.php:169 16 41 msgid "Hello [email]," 17 42 msgstr "Bonjour [email]," 18 43 44 #: inc/lib.subscribeToComments.php:171 19 45 msgid "To manage your subscriptions, change your email address or block emails, click here: [manageurl]" 20 46 msgstr "Pour gérer vos abonnements, changer votre adresse email ou bloquer les emails, cliquez ici : [manageurl]" 21 47 48 #: inc/lib.subscribeToComments.php:175 22 49 msgid "Your account on [blogname]" 23 50 msgstr "Votre compte sur [blogname]" 24 51 52 #: inc/lib.subscribeToComments.php:182 25 53 msgid "here are some informations about your account on [blogname]:" 26 54 msgstr "voici quelques informations à propos de votre compte sur [blogname] :" 27 55 56 #: inc/lib.subscribeToComments.php:184 28 57 msgid "Email address: [email]" 29 58 msgstr "Adresse email : [email]" 30 59 60 #: inc/lib.subscribeToComments.php:195 31 61 msgid "Subscribed to [posttitle] - [blogname]" 32 62 msgstr "Abonné à [posttitle] - [blogname]" 33 63 64 #: inc/lib.subscribeToComments.php:201 34 65 msgid "you subscribed to [posttitle]: [posturl]" 35 66 msgstr "vous vous êtes abonné à [posttitle] : [posturl]" 36 67 68 #: inc/lib.subscribeToComments.php:210 37 69 msgid "New comment on [posttitle] - [blogname]" 38 70 msgstr "Nouveau commentaire sur [posttitle] - [blogname]" 39 71 72 #: inc/lib.subscribeToComments.php:216 40 73 msgid "a new comment has been posted by [commentauthor] on [posttitle]:" 41 74 msgstr "un nouveau commentaire a été posté par [commentauthor] sur [posttitle] :" 42 75 76 #: inc/lib.subscribeToComments.php:221 43 77 msgid "View the comment: [commenturl]" 44 78 msgstr "Voir le commentaire : [commenturl]" 45 79 80 #: inc/lib.subscribeToComments.php:222 46 81 msgid "View the post: [posturl]" 47 82 msgstr "Voir le billet : [posturl]" 48 83 84 #: inc/lib.subscribeToComments.php:231 49 85 msgid "Change email address on [blogname]" 50 86 msgstr "Changer l'adresse email sur [blogname]" 51 87 88 #: inc/lib.subscribeToComments.php:237 52 89 msgid "you have requested to change the email address of your subscriptions to [newemail], click on this link: [emailurl]" 53 90 msgstr "vous avez demandé à changer l'adresse email de vos abonnements pour [newemail], cliquez sur ce lien : [emailurl]" 54 91 92 #: inc/lib.subscribeToComments.php:239 55 93 msgid "This link is valid for 24 hours." 56 94 msgstr "Ce lien est valide pendant 24 heures." 57 95 96 #: index.php:84 58 97 msgid "Blog URL" 59 98 msgstr "URL du blog" 60 99 100 #: index.php:92 101 #: index.php:96 61 102 msgid "Post title" 62 103 msgstr "Titre du billet" 63 104 105 #: index.php:93 106 #: index.php:97 64 107 msgid "Post URL" 65 108 msgstr "URL du billet" 66 109 110 #: index.php:98 67 111 msgid "URL to new comment" 68 112 msgstr "URL vers le nouveau commentaire" 69 113 114 #: index.php:99 70 115 msgid "Comment author" 71 116 msgstr "Auteur du commentaire" 72 117 118 #: index.php:100 73 119 msgid "Comment content" 74 120 msgstr "Contenu du commentaire" 75 121 122 #: index.php:107 76 123 msgid "URL to confirm the change of email address" 77 124 msgstr "URL pour confirmer le changement d'adresse email" 78 125 126 #: index.php:126 79 127 msgid "(blog language)" 80 128 msgstr "(langue du blog)" 81 129 130 #: index.php:165 82 131 msgid "Test email from your blog - %s" 83 132 msgstr "Email test depuis votre blog - %s" 84 133 134 #: index.php:166 85 135 msgid "The plugin % works." 86 136 msgstr "Le plugin %s fonctionne." 87 137 138 #: index.php:279 88 139 msgid "Test email sent." 89 140 msgstr "Email test envoyé." 90 141 142 #: index.php:283 91 143 msgid "Settings restored." 92 144 msgstr "Paramètres restaurés." 93 145 94 msgid "Configuration successfully updated." 95 msgstr "Configuration mise à jour avec succès." 96 146 #: index.php:345 97 147 msgid "Restore default settings? The old settings will be deleted." 98 148 msgstr "Restaurer les paramètres par défaut ? Les anciens paramètres seront supprimés." 99 149 150 #: index.php:349 151 msgid "Delete selected subscribers?" 152 msgstr "Supprimer les abonnés sélectionnés ?" 153 154 #: index.php:372 100 155 msgid "The plugin is disabled." 101 156 msgstr "Ce plugin n'est pas activé." 102 157 158 #: index.php:377 159 #: index.php:390 103 160 msgid "Enable %s" 104 161 msgstr "Activer %s" 105 162 106 msgid "Save configuration" 107 msgstr "Enregistrer la configuration" 108 163 #: index.php:384 109 164 msgid "Settings" 110 165 msgstr "Paramètres" 111 166 167 #: index.php:394 112 168 msgid "Define From: header of outbound emails:" 113 169 msgstr "Définir l'entête From: des emails sortants :" 114 170 171 #: index.php:400 115 172 msgid "Post types" 116 173 msgstr "Types de billets" 117 174 175 #: index.php:401 118 176 msgid "Enable %s with the following post types:" 119 177 msgstr "Activer %s pour les types de billets suivants :" 120 178 179 #: index.php:420 121 180 msgid "No entry yet. Create a new entry." 122 181 msgstr "Pas encore de billet. Créez un nouveau billet." 123 182 183 #: index.php:424 124 184 msgid "Email formatting" 125 185 msgstr "Format des emails" 126 186 187 #: index.php:425 127 188 msgid "You can format the emails using the following tags." 128 189 msgstr "Vous pouvez formater les emails en utilisant les balises suivantes." 129 190 191 #: index.php:426 130 192 msgid "Each tag will be replaced by the associated value." 131 193 msgstr "Chaque balise sera remplacée par la valeur associée." 132 194 195 #: index.php:427 133 196 msgid "Tags available in all the contexts" 134 197 msgstr "Balises disponibles dans tous les contextes" 135 198 136 msgid "Tag" 137 msgstr "Balise" 138 199 #: index.php:439 139 200 msgid "Email sent when an account is created or if a subscriber request it" 140 201 msgstr "Email envoyé quand un compte est créé ou si un abonné le demande" 141 202 203 #: index.php:441 204 #: index.php:474 205 #: index.php:501 206 #: index.php:528 142 207 msgid "Subject:" 143 208 msgstr "Sujet :" 144 209 210 #: index.php:457 145 211 msgid "Email sent when a subscriber subscribe to the comments of a post" 146 212 msgstr "Email envoyé quand un abonné s'abonne aux commentaires d'un billet" 147 213 214 #: index.php:462 148 215 msgid "Send an email for each subscription to the comments of a post" 149 216 msgstr "Envoyer un email pour chaque abonnement aux commentaires d'un billet" 150 217 218 #: index.php:464 219 #: index.php:491 220 #: index.php:518 151 221 msgid "Available tags" 152 222 msgstr "Balises disponibles" 153 223 224 #: index.php:490 154 225 msgid "Email sent when a new comment is published" 155 226 msgstr "Email envoyé quand un nouveau commentaire est publié" 156 227 228 #: index.php:517 157 229 msgid "Email sent when a subscriber want to change his email address" 158 230 msgstr "Email envoyé quand un abonné veut changer d'adresse email" 159 231 232 #: index.php:548 233 #: index.php:549 160 234 msgid "Display" 161 235 msgstr "Affichage" 162 236 237 #: index.php:551 163 238 msgid "This plugin needs to add some code on the post page." 164 239 msgstr "Ce plugin a besoin d'ajouter du code sur la page du billet." 165 240 241 #: index.php:552 166 242 msgid "This can be done automatically by checking the following checkboxes." 167 243 msgstr "Cela peut être fait automatiquement en cochant les cases suivantes." 168 244 245 #: index.php:553 169 246 msgid "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:" 170 247 msgstr "Si vous voulez modifier l'affichage sur la page du billet, décochez les cases suivantes et suivez les instructions sous chaque case :" 171 248 249 #: index.php:554 172 250 msgid "You can use the plugin <strong>%s</strong> to edit the file <strong>post.html</strong>." 173 251 msgstr "Vous pouvez utiliser le plugin <strong>%s</strong> pour éditer le fichier <strong>post.html</strong>." 174 252 253 #: index.php:558 175 254 msgid "Install %s on the post page." 176 255 msgstr "Installer %s sur la page du billet." 177 256 257 #: index.php:564 178 258 msgid "Add the <strong>%s</strong> checkbox in the comment form" 179 259 msgstr "Ajouter la case <strong>%s</strong> dans le formulaire de commentaire" 180 260 261 #: index.php:570 181 262 msgid "insert this in the comment form (suggestion: in the <code><fieldset></code> before the <code></form></code> tag):" 182 263 msgstr "insérez ceci dans le formulaire de commentaire (suggestion : dans le <code><fieldset></code> avant la balise <code></form></code>) :" 183 264 265 #: index.php:579 184 266 msgid "If the <strong>%s</strong> checkbox is not displayed correctly and the blog use Blowup or Blue Silence theme, check this:" 185 267 msgstr "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 :" 186 268 269 #: index.php:586 187 270 msgid "Add a CSS rule to style the <strong>%1$s</strong> checkbox" 188 271 msgstr "Ajouter une règle CSS pour styler la case <strong>%1$s</strong>" 189 272 273 #: index.php:592 190 274 msgid "add this CSS rule at the end of the file <strong>style.css</strong>" 191 275 msgstr "ajoutez cette règle CSS à la fin du fichier <strong>style.css</strong>" 192 276 277 #: index.php:604 193 278 msgid "Add a link to the <strong>%s</strong> page between the comments and the trackbacks" 194 279 msgstr "Ajouter un lien vers la page <strong>%s</strong> entre les commentaires et les rétroliens" 195 280 281 #: index.php:608 196 282 msgid "The code will appear after the %s tag." 197 283 msgstr "Le code apparaîtra après la balise %s." 198 284 285 #: index.php:611 199 286 msgid "If you don't want the code to appear, add the %s attribute to the %s tag." 200 287 msgstr "Pour que le code n'apparaisse pas, ajoutez l'attribut %s à la balise %s." 201 288 289 #: index.php:617 202 290 msgid "insert this anywhere on the page (suggestion: just after the <code></form></code> tag):" 203 291 msgstr "insérez ceci n'importe où dans la page (suggestion : juste après la balise <code></form></code>) :" 204 292 293 #: index.php:619 205 294 msgid "The default id of the returned block is <code>subscribetocomments_block</code>, you can specify your own id and class." 206 295 msgstr "L'id par défaut du bloc retourné est <code>subscribetocomments_block</code>, vous pouvez choisir votre propre id et classe." 207 296 297 #: index.php:637 208 298 msgid "Restore" 209 299 msgstr "Restaurer" 210 300 301 #: index.php:638 302 #: index.php:648 211 303 msgid "Restore default settings" 212 304 msgstr "Restaurer les paramètres par défaut" 213 305 306 #: index.php:652 307 #: index.php:653 214 308 msgid "Subscribers" 215 309 msgstr "Abonnés" 216 310 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 :" 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 314 msgid "Test" 315 msgstr "Test" 316 317 #: index.php:757 229 318 msgid "To use this plugin, you have to test if the server can send emails:" 230 319 msgstr "Pour utiliser ce plugin, vous devez tester si le serveur peut envoyer des emails :" 231 320 232 msgid "Test" 233 msgstr "Test" 234 321 #: index.php:770 235 322 msgid "Try to send an email" 236 323 msgstr "Essayer d'envoyer un email" 237 324 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 244 326 msgid "URL of the %s page:" 245 327 msgstr "URL de la page %s :" 246 328 329 #: index.php:783 247 330 msgid "View the %s page" 248 331 msgstr "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 1 5 2 6 msgid "" 3 7 msgstr "" 4 8 "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" 6 10 "POT-Creation-Date: \n" 7 "PO-Revision-Date: 201 0-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" 9 13 "Language-Team: \n" 10 14 "MIME-Version: 1.0\n" 11 15 "Content-Transfer-Encoding: 8bit\n" 16 "Plural-Forms: nplurals=2; plural=(n > 1);\n" 12 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 13 33 msgid "Subscribe to comments" 14 34 msgstr "Abonnement aux commentaires" 15 35 36 #: _admin.php:88 16 37 msgid "<img src=\"images/check-off.png\" alt=\"%1$s\" title=\"%1$s\" /> Notification email not sent, click on <strong>%2$s</strong>." 17 38 msgstr "<img src=\"images/check-off.png\" alt=\"%1$s\" title=\"%1$s\" /> Email de notification non envoyé, cliquez sur <strong>%2$s</strong>." 18 39 40 #: _admin.php:89 19 41 msgid "not sent" 20 42 msgstr "non envoyé" 21 43 44 #: _admin.php:89 45 msgid "save" 46 msgstr "enregistrer" 47 48 #: _admin.php:94 22 49 msgid "<img src=\"images/check-on.png\" alt=\"%1$s\" title=\"%1$s\" /> Notification email sent." 23 50 msgstr "<img src=\"images/check-on.png\" alt=\"%1$s\" title=\"%1$s\" /> Email de notification envoyé." 24 51 52 #: _admin.php:97 53 msgid "Subscribe to comments:" 54 msgstr "Abonnement aux commentaires :" 55 56 #: inc/class.subscriber.php:65 57 #: inc/class.subscriber.php:315 25 58 msgid "Invalid email address or key." 26 59 msgstr "Adresse email ou clé invalide." 27 60 61 #: inc/class.subscriber.php:151 62 #: inc/lib.subscribeToComments.document.php:62 28 63 msgid "Invalid post ID." 29 64 msgstr "Identifiant du billet invalide." 30 65 66 #: inc/class.subscriber.php:156 31 67 msgid "Invalid post." 32 68 msgstr "Billet invalide." 33 69 70 #: inc/class.subscriber.php:200 71 #: inc/class.subscriber.php:502 34 72 msgid "This email address already exists." 35 73 msgstr "Cette adresse email existe déjà." 36 74 75 #: inc/class.subscriber.php:396 37 76 msgid "Reload the page" 38 77 msgstr "Recharger la page" 39 78 79 #: inc/class.subscriber.php:495 80 #: inc/lib.subscribeToComments.php:56 40 81 msgid "Invalid key." 41 82 msgstr "Clé invalide." 42 83 84 #: inc/class.subscriber.php:506 43 85 msgid "Link expired, request another email." 44 86 msgstr "Lien périmé, demandez un autre email." 45 87 88 #: inc/lib.subscribeToComments.php:43 46 89 msgid "Invalid email address." 47 90 msgstr "Adresse email invalide." 48 91 92 #: inc/lib.subscribeToComments.tpl.php:243 93 #: index.php:47 94 #: index.php:565 95 #: index.php:580 96 #: index.php:587 49 97 msgid "Receive following comments by email" 50 98 msgstr "Recevoir les commentaires suivants par email" 51 99 100 #: index.php:87 52 101 msgid "%s's page URL" 53 102 msgstr "URL de la page %s" 54 103 104 #: index.php:105 55 105 msgid "New email address" 56 106 msgstr "Nouvelle adresse email" 57 107 108 #: index.php:291 109 msgid "Subscribers deleted successfully." 110 msgstr "Abonnés supprimés avec succès" 111 112 #: index.php:620 113 msgid "Examples:" 114 msgstr "Exemples :" 115 116 #: index.php:686 58 117 msgid "no subscriber" 59 118 msgstr "pas d'abonné" 60 119 120 #: index.php:695 121 msgid "Click on a subscriber in order to manage its subscriptions." 122 msgstr "Cliquer sur un abonné pour modifier ses abonnements" 123 124 #: index.php:699 125 #: index.php:748 126 msgid "Delete subscribers" 127 msgstr "Supprimer les abonnés" 128 129 #: index.php:703 130 msgid "Subscriber" 131 msgstr "Abonné" 132 133 #: index.php:705 134 msgid "First comment date" 135 msgstr "Date du premier commentaire" 136 137 #: index.php:716 138 msgid "Subscribers with at least one comment marked as spam:" 139 msgstr "Abonnés avec au moins un commentaire marqué comme indésirable :" 140 141 #: index.php:726 142 msgid "Subscribers with no comments:" 143 msgstr "Abonnés sans commentaires :" 144 145 #: index.php:767 61 146 msgid "This will send a email, if you don't receive it, try to <a href=\"%s\">change the way Dotclear send emails</a>." 62 147 msgstr "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>" 63 148 64 msgid " Example:"65 msgstr " Exemple :"149 msgid "Subscribe to comments by email" 150 msgstr "Abonnement aux commentaires par email" 66 151 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 1 5 2 6 msgid "" 3 7 msgstr "" 4 8 "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" 6 10 "POT-Creation-Date: \n" 7 "PO-Revision-Date: 201 0-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" 9 13 "Language-Team: \n" 10 14 "MIME-Version: 1.0\n" 11 15 "Content-Transfer-Encoding: 8bit\n" 16 "Plural-Forms: nplurals=2; plural=(n > 1);\n" 12 17 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 24 msgid "Subscribe to comments" 25 msgstr "Abonnement aux commentaires" 26 27 #: default-templates/currywurst/subscribetocomments.html:37 28 #: default-templates/mustek/subscribetocomments.html:37 29 msgid "Remove selected subscriptions?" 30 msgstr "Supprimer les abonnements sélectionnés ?" 31 32 #: default-templates/currywurst/subscribetocomments.html:42 33 #: default-templates/mustek/subscribetocomments.html:42 34 msgid "Allow emails?" 35 msgstr "Autoriser les emails ?" 36 37 #: default-templates/currywurst/subscribetocomments.html:43 38 #: default-templates/mustek/subscribetocomments.html:43 39 msgid "Block emails?" 40 msgstr "Bloquer les emails ?" 41 42 #: default-templates/currywurst/subscribetocomments.html:44 43 #: default-templates/mustek/subscribetocomments.html:44 44 msgid "Delete the account?" 45 msgstr "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 51 msgid "Get back to" 52 msgstr "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 58 msgid "Subscribe to one entry" 59 msgstr "S'abonner à un billet" 60 61 #: default-templates/currywurst/subscribetocomments.html:79 62 #: default-templates/mustek/subscribetocomments.html:79 63 msgid "To login, you have to click on the link given in previously sent emails." 64 msgstr "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 68 msgid "Click on the button below to resend informations to your email address." 69 msgstr "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 73 msgid "Resend account informations to this email address" 74 msgstr "Renvoyer les informations du compte à cette adresse email" 75 76 #: default-templates/currywurst/subscribetocomments.html:101 77 #: default-templates/mustek/subscribetocomments.html:101 78 msgid "Logout" 79 msgstr "Déconnexion" 80 81 #: default-templates/currywurst/subscribetocomments.html:115 82 #: default-templates/mustek/subscribetocomments.html:115 83 msgid "Remove subscriptions" 84 msgstr "Supprimer des abonnements" 85 86 #: default-templates/currywurst/subscribetocomments.html:132 87 #: default-templates/mustek/subscribetocomments.html:132 88 msgid "invert selection" 89 msgstr "inverser la sélection" 90 91 #: default-templates/currywurst/subscribetocomments.html:134 92 #: default-templates/mustek/subscribetocomments.html:134 93 msgid "Remove selected subscriptions" 94 msgstr "Supprimer les abonnements sélectionnés" 95 96 #: default-templates/currywurst/subscribetocomments.html:137 97 #: default-templates/mustek/subscribetocomments.html:137 98 msgid "Account" 99 msgstr "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 105 msgid "Change email address" 106 msgstr "Changer l'adresse email" 107 108 #: default-templates/currywurst/subscribetocomments.html:142 109 #: default-templates/mustek/subscribetocomments.html:142 110 msgid "New email address:" 111 msgstr "Nouvelle adresse email :" 112 113 #: default-templates/currywurst/subscribetocomments.html:146 114 #: default-templates/mustek/subscribetocomments.html:146 115 msgid "You'll have 24 hours to click on the link sent to the new email address to confirm the change." 116 msgstr "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 120 msgid "Allow emails" 121 msgstr "Autoriser les emails" 122 123 #: default-templates/currywurst/subscribetocomments.html:156 124 #: default-templates/mustek/subscribetocomments.html:156 125 msgid "Block emails" 126 msgstr "Bloquer les emails" 127 128 #: default-templates/currywurst/subscribetocomments.html:160 129 #: default-templates/mustek/subscribetocomments.html:160 130 msgid "Delete all subscriptions and the account" 131 msgstr "Supprimer tous les abonnements et le compte" 132 133 #: inc/lib.subscribeToComments.document.php:173 13 134 msgid "Account informations sent" 14 135 msgstr "Informations sur le compte envoyées" 15 136 137 #: inc/lib.subscribeToComments.document.php:176 16 138 msgid "Subscriptions removed" 17 139 msgstr "Abonnements effacés" 18 140 141 #: inc/lib.subscribeToComments.document.php:179 19 142 msgid "Logged out" 20 143 msgstr "Déconnecté" 21 144 145 #: inc/lib.subscribeToComments.document.php:182 146 #: inc/lib.subscribeToComments.tpl.php:237 147 #: index.php:49 22 148 msgid "Logged in" 23 149 msgstr "Connecté" 24 150 151 #: inc/lib.subscribeToComments.document.php:185 25 152 msgid "Emails blocked" 26 153 msgstr "Emails bloqués" 27 154 155 #: inc/lib.subscribeToComments.document.php:188 28 156 msgid "Emails allowed" 29 157 msgstr "Emails autorisés" 30 158 159 #: inc/lib.subscribeToComments.document.php:191 31 160 msgid "An email has been sent to the new email address" 32 161 msgstr "Un email a été envoyé à la nouvelle adresse email" 33 162 163 #: inc/lib.subscribeToComments.document.php:194 34 164 msgid "Email address changed" 35 165 msgstr "Adresse email changée" 36 166 167 #: inc/lib.subscribeToComments.document.php:197 37 168 msgid "Account deleted" 38 169 msgstr "Compte supprimé" 39 170 171 #: inc/lib.subscribeToComments.document.php:200 40 172 msgid "Subscribed to the entry" 41 173 msgstr "Abonné au billet" 42 174 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 43 179 msgid "Subscribe to receive following comments by email or manage subscriptions" 44 180 msgstr "S'abonner pour recevoir les commentaires suivants par email ou modifier les abonnements" 45 181 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 46 186 msgid "Subscribe to receive following comments by email" 47 187 msgstr "S'abonner pour recevoir les commentaires suivants par email" 48 188 49 msgid "Error:"50 msgstr "Erreur :"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.