diff --git a/data/System/MetaCommentPlugin.txt b/data/System/MetaCommentPlugin.txt index aa5af10..b93e20c 100644 --- a/data/System/MetaCommentPlugin.txt +++ b/data/System/MetaCommentPlugin.txt @@ -1,4 +1,4 @@ -%META:TOPICINFO{author="ProjectContributor" comment="" date="1574759516" format="1.1" version="1"}% +%META:TOPICINFO{author="ProjectContributor" comment="" date="1605804814" format="1.1" version="1"}% ---+!! MetaCommentPlugin %FORMFIELD{"Description"}% @@ -6,10 +6,10 @@ This is YACS (yet another comment system) which tries to - * (a) be easy to use, - * (b) scale up to lots of comments - * (c) provide different layouts and commenting requirements and - * (d) implement a moderation workflow for comments before they go live. + 1 be easy to use, + 1 scale up to lots of comments + 1 provide different layouts and commenting requirements and + 1 implement a moderation workflow for comments before they go live. %TOPIC% allows to easily add commenting to any topic. Discussiosn can either be displayed in linear or threaded mode. Different comment styles and @@ -196,6 +196,7 @@ When rendering a comment, the following variables can be used in the =format= st * $state: the state of this comment * $count: the total number of comments * $ismoderator: true/false if the current user is allowed to moderate the comments or not + * $ismoderated: true/false if the current topic is moderated or not * $timestamp: the date when this comment was created; format in epoch seconds * $date: the date when this comment was created in Foswiki's default time format * $modified: the date this comment was last modified @@ -265,6 +266,14 @@ The parameters =THEWEB=, =WHERE= and =LIMIT= are optional where ---++ Change History %TABLE{columnwidths="7em" tablewidth="100%"}% +| 04 May 2022: | 7.00 - added interface to render comments from a base translation; \ + improve usability of threaded commenting; \ + better editor integration; \ + use new api of JQDataTablesPlugin to register custom columns to dbcache and solr connectors; \ + new solr fields =field_Comments_d= and =field_CommentDate_dt= | +| 17 Jun 2021: | 6.20 - added =ismoderated= to only show approval controls if the topic actually is moderated | +| 06 May 2021: | 6.10 - added new preference setting COMMENTNOTIFY (default on) to suppress change notifications when a topic is commented | +| 31 Mar 2021: | 6.00 - rewrite of javascript code; blocking browser navigation when there are unsaved comments | | 26 Nov 2019: | 5.10 - added rev parameter to display comments of previous revisions of a topic; \ added "delete all", "approve all", "mark all" features to moderate comments in bunches; \ improved [[Foswiki:Extensions/SolrPlugin][SolrPlugin]] integration | @@ -316,14 +325,14 @@ The parameters =THEWEB=, =WHERE= and =LIMIT= are optional where fixed recoding of received data to the site's own charset; \ improved the way photos are gathered | -%META:FILEATTACHMENT{name="MetaCommentSnap1.jpeg" attachment="MetaCommentSnap1.jpeg" attr="h" comment="" date="1574759516" path="MetaCommentSnap1.jpeg" size="51144" user="ProjectContributor" version="1"}% %META:FORM{name="PackageForm"}% %META:FIELD{name="Author" title="Author" value="Foswiki:Main/MichaelDaum"}% -%META:FIELD{name="Copyright" title="Copyright" value="2009-2019, Michael Daum http://michaeldaumconsulting.com"}% +%META:FIELD{name="Version" title="Version" value="%25$VERSION%25"}% +%META:FIELD{name="Release" title="Release" value="%25$RELEASE%25"}% %META:FIELD{name="Description" title="Description" value="%25$SHORTDESCRIPTION%25"}% -%META:FIELD{name="Home" title="Home" value="https://foswiki.org/Extensions/MetaCommentPlugin"}% -%META:FIELD{name="License" title="License" value="[[http://www.gnu.org/licenses/gpl.html][GPL (Gnu General Public License)]]"}% -%META:FIELD{name="Release" title="Release" value="%$RELEASE%"}% %META:FIELD{name="Repository" title="Repository" value="https://github.com/foswiki/MetaCommentPlugin"}% +%META:FIELD{name="Copyright" title="Copyright" value="2009-2022, Michael Daum"}% +%META:FIELD{name="License" title="License" value="[[http://www.gnu.org/licenses/gpl.html][GPL (Gnu General Public License)]]"}% +%META:FIELD{name="Home" title="Home" value="https://foswiki.org/Extensions/MetaCommentPlugin"}% %META:FIELD{name="Support" title="Support" value="Foswiki:Support/MetaCommentPlugin"}% -%META:FIELD{name="Version" title="Version" value="%$VERSION%"}% +%META:FILEATTACHMENT{name="MetaCommentSnap1.jpeg" attachment="MetaCommentSnap1.jpeg" attr="h" comment="" date="1574759516" path="MetaCommentSnap1.jpeg" size="51144" user="ProjectContributor" version="1"}% diff --git a/lib/Foswiki/Plugins/MetaCommentPlugin.pm b/lib/Foswiki/Plugins/MetaCommentPlugin.pm index 40a3bdc..50dd59e 100644 --- a/lib/Foswiki/Plugins/MetaCommentPlugin.pm +++ b/lib/Foswiki/Plugins/MetaCommentPlugin.pm @@ -1,6 +1,6 @@ # Plugin for Foswiki - The Free and Open Source Wiki, http://foswiki.org/ # -# Copyright (C) 2009-2019 Michael Daum http://michaeldaumconsulting.com +# Copyright (C) 2009-2022 Michael Daum http://michaeldaumconsulting.com # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -18,9 +18,10 @@ use warnings; use Foswiki::Func (); use Foswiki::Plugins (); use Foswiki::Contrib::JsonRpcContrib (); +use Foswiki::Plugins::JQueryPlugin (); -our $VERSION = '5.10'; -our $RELEASE = '26 Nov 2019'; +our $VERSION = '7.00'; +our $RELEASE = '04 May 2022'; our $SHORTDESCRIPTION = 'An easy to use comment system'; our $NO_PREFS_IN_TOPIC = 1; our $core; @@ -31,6 +32,8 @@ sub initPlugin { $core = undef; @commentHandlers = (); + Foswiki::Plugins::JQueryPlugin::registerPlugin("MetaComment", 'Foswiki::Plugins::MetaCommentPlugin::JQuery'); + Foswiki::Func::registerTagHandler('METACOMMENTS', sub { return getCore(shift)->METACOMMENTS(@_); }); @@ -92,6 +95,37 @@ sub initPlugin { }); } + if ($Foswiki::cfg{Plugins}{JQDataTablesPlugin}{Enabled}) { + # register qmstate properties to JQDataTablesPlugin + require Foswiki::Plugins::JQDataTablesPlugin; + + Foswiki::Plugins::JQDataTablesPlugin::describeColumn("dbcache", "comments", { + type => "number", + data => 'length(comments)', + search => 'length(comments)', + sort => 'length(comments)', + }); + Foswiki::Plugins::JQDataTablesPlugin::describeColumn("dbcache", "commentdate", { + type => 'date', + data => 'commentdate', + search => 'lc(n2d(commentdate))', + sort => 'commentdate', + }); + + Foswiki::Plugins::JQDataTablesPlugin::describeColumn("solr", "comments", { + type => 'number', + data => 'field_Comments_d', + search => 'field_Comments_d', + sort => 'field_Comments_d', + }); + Foswiki::Plugins::JQDataTablesPlugin::describeColumn("solr", "commentdate", { + type => 'date', + data => 'field_Comments_dt', + search => 'field_Comments_search', + sort => 'field_Comments_dt', + }); + } + if ($Foswiki::Plugins::VERSION > 2.0) { Foswiki::Meta::registerMETA("COMMENT", many=>1, alias=>"comment"); } diff --git a/lib/Foswiki/Plugins/MetaCommentPlugin/Core.pm b/lib/Foswiki/Plugins/MetaCommentPlugin/Core.pm index 5ff7b46..48e0ca0 100644 --- a/lib/Foswiki/Plugins/MetaCommentPlugin/Core.pm +++ b/lib/Foswiki/Plugins/MetaCommentPlugin/Core.pm @@ -1,6 +1,6 @@ # Plugin for Foswiki - The Free and Open Source Wiki, http://foswiki.org/ # -# Copyright (C) 2009-2019 Michael Daum http://michaeldaumconsulting.com +# Copyright (C) 2009-2021 Michael Daum http://michaeldaumconsulting.com # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -41,6 +41,7 @@ sub new { baseWeb => $session->{webName}, baseTopic => $session->{topicName}, anonCommenting => $Foswiki::cfg{MetaCommentPlugin}{AnonymousCommenting}, + commentNotify => Foswiki::Func::isTrue(Foswiki::Func::getPreferencesValue("COMMENTNOTIFY"), 1), wikiName => Foswiki::Func::getWikiName(), }; @@ -142,7 +143,7 @@ sub jsonRpcSaveComment { }; $meta->putKeyed('COMMENT', $comment); - Foswiki::Func::saveTopic($web, $topic, $meta, $text, {ignorepermissions=>1, minor=>1}) unless DRY; + Foswiki::Func::saveTopic($web, $topic, $meta, $text, {ignorepermissions=>1, minor => !$this->{commentNotify}}) unless DRY; $this->triggerEvent("commentsave", $web, $topic, $comment); return; @@ -260,7 +261,7 @@ sub jsonRpcUpdateComment { $meta->putKeyed('COMMENT', $comment); - Foswiki::Func::saveTopic($web, $topic, $meta, $text, {ignorepermissions=>1, minor=>1}) unless DRY; + Foswiki::Func::saveTopic($web, $topic, $meta, $text, {ignorepermissions=>1, minor => !$this->{commentNotify}}) unless DRY; $this->triggerEvent("commentupdate", $web, $topic, $comment); return; @@ -313,7 +314,7 @@ sub jsonRpcDeleteComment { # remove this comment $meta->remove('COMMENT', $id); - Foswiki::Func::saveTopic($web, $topic, $meta, $text, {ignorepermissions=>1, minor=>1}) unless DRY; + Foswiki::Func::saveTopic($web, $topic, $meta, $text, {ignorepermissions=>1, minor => !$this->{commentNotify}}) unless DRY; $this->triggerEvent("commentdelete", $web, $topic, $comment); return; @@ -353,7 +354,7 @@ sub jsonRpcDeleteAllComments { # remove all comments $meta->remove('COMMENT'); - Foswiki::Func::saveTopic($web, $topic, $meta, $text, {ignorepermissions=>1, minor=>1}) unless DRY; + Foswiki::Func::saveTopic($web, $topic, $meta, $text, {ignorepermissions=>1, minor => 1}) unless DRY; $this->triggerEvent("commentdeleteall", $web, $topic); return; @@ -400,6 +401,7 @@ sub jsonRpcApproveAllComments { return; } + ############################################################################## sub jsonRpcMarkAllComments { my ($this, $request) = @_; @@ -500,7 +502,6 @@ sub isModerator { my ($this, $web, $topic, $meta) = @_; return 1 if Foswiki::Func::isAnAdmin(); - return 0 unless $this->isModerated($web, $topic, $meta); return 1 if Foswiki::Func::checkAccessPermission("MODERATE", $this->{wikiName}, undef, $topic, $web, $meta); return 0; } @@ -581,7 +582,8 @@ sub METACOMMENTS { $params->{count} = ($count > 1)?$params->{plural}:$params->{singular}; $params->{count} =~ s/\$count/$count/g; - $params->{ismoderator} = $this->isModerator($theWeb, $theTopic); + $params->{ismoderator} = $this->isModerator($theWeb, $theTopic, $meta); + $params->{ismoderated} = $this->isModerated($theWeb, $theTopic, $meta); # format the results my @topComments; @@ -596,11 +598,13 @@ sub METACOMMENTS { expandVariables($params->{header}, count=>$params->{count}, ismoderator=>$params->{ismoderator}, + ismoderated=>$params->{ismoderated}, ). join(expandVariables($params->{separator}), @result). expandVariables($params->{footer}, count=>$params->{count}, ismoderator=>$params->{ismoderator}, + ismoderated=>$params->{ismoderated}, ); # oh well @@ -810,10 +814,12 @@ sub formatComments { count=>$params->{count}, index=>$indexString, ismoderator=>$params->{ismoderator}, + ismoderated=>$params->{ismoderated}, ).$subComments. expandVariables($params->{subfooter}, count=>$params->{count}, ismoderator=>$params->{ismoderator}, + ismoderated=>$params->{ismoderated}, index=>$indexString) }; } @@ -841,6 +847,7 @@ sub formatComments { state=>$comment->{state}, count=>$params->{count}, ismoderator=>$params->{ismoderator}, + ismoderated=>$params->{ismoderated}, timestamp=>$comment->{date} || 0, date=>Foswiki::Time::formatTime(($comment->{date}||0)), modified=>Foswiki::Time::formatTime(($comment->{modified}||0)), @@ -968,9 +975,8 @@ sub solrIndexTopicHandler { # delete all previous comments of this topic $indexer->deleteByQuery("type:comment web:$web topic:$topic"); + my $commentDate = 0; my @comments = $meta->find('COMMENT'); - return unless @comments; - my @aclFields = $indexer->getAclFields($web, $topic, $meta); my $isModerated = $this->isModerated($web, $topic, $meta); @@ -980,7 +986,15 @@ sub solrIndexTopicHandler { # set doc fields my $createDate = Foswiki::Func::formatTime($comment->{date}, 'iso', 'gmtime'); - my $date = defined($comment->{modified}) ? Foswiki::Func::formatTime($comment->{modified}, 'iso', 'gmtime') : $createDate; + my $createStr = Foswiki::Func::formatTime($comment->{date}); + my $cmtDate = $comment->{modified} || $comment->{date}; + my $date = Foswiki::Func::formatTime($cmtDate, 'iso', 'gmtime'); + my $dateStr = Foswiki::Func::formatTime($cmtDate); + + if ($cmtDate > $commentDate) { + $commentDate = $cmtDate; + } + my $webtopic = "$web.$topic"; $webtopic =~ s/\//./g; my $id = $webtopic . '#' . $comment->{name}; @@ -1010,7 +1024,9 @@ sub solrIndexTopicHandler { # 'author_url' => $comment->{author_url}, 'contributor' => $comment->{author}, 'date' => $date, + 'date_s' => $dateStr, 'createdate' => $createDate, + 'createdate_s' => $createStr, 'title' => $title, 'text' => $comment->{text}, 'url' => $url, @@ -1048,7 +1064,6 @@ sub solrIndexTopicHandler { $doc->add_fields('catchall' => $title); $doc->add_fields('catchall' => $comment->{text}); - # add the document to the index try { $indexer->add($commentDoc); @@ -1058,6 +1073,12 @@ sub solrIndexTopicHandler { $indexer->log("ERROR: " . $e->{-text}); }; } + + my $numComments = scalar(@comments); + + $doc->add_fields(field_Comments_d => $numComments); + $doc->add_fields(field_CommentDate_dt => Foswiki::Func::formatTime($commentDate, 'iso', 'gmtime')) + if $commentDate; } ############################################################################## @@ -1068,6 +1089,7 @@ sub dbcacheIndexTopicHandler { # cache comments my $archivist = $db->getArchivist(); my @comments = $meta->find('COMMENT'); + my $commentDate = 0; my $cmts; diff --git a/lib/Foswiki/Plugins/MetaCommentPlugin/JQuery.pm b/lib/Foswiki/Plugins/MetaCommentPlugin/JQuery.pm new file mode 100644 index 0000000..3be9811 --- /dev/null +++ b/lib/Foswiki/Plugins/MetaCommentPlugin/JQuery.pm @@ -0,0 +1,45 @@ +# Extension for Foswiki - The Free and Open Source Wiki, http://foswiki.org/ +# +# JQuery Jitsi Meet is Copyright (C) 2021 Michael Daum +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details, published at +# http://www.gnu.org/copyleft/gpl.html + +package Foswiki::Plugins::MetaCommentPlugin::JQuery; + +use strict; +use warnings; + +use Foswiki::Func (); +use Foswiki::Plugins::MetaCommentPlugin (); +use Foswiki::Plugins::JQueryPlugin::Plugin (); +our @ISA = qw( Foswiki::Plugins::JQueryPlugin::Plugin ); + +sub new { + my $class = shift; + + my $this = bless( + $class->SUPER::new( + name => 'MetaCommentPlugin', + version => $Foswiki::Plugins::MetaCommentPlugin::VERSION, + author => 'Michael Daum', + homepage => 'https://foswiki.org/Extensions/MetaCommentPlugin', + javascript => ['naviblocker.js', 'metacomment.js'], + css => ['metacomment.css'], + puburl => '%PUBURLPATH%/%SYSTEMWEB%/MetaCommentPlugin', + dependencies => ['ui', 'form', 'jsonrpc', 'pnotify', 'scrollto'], + ), + $class + ); + + return $this; +} + diff --git a/lib/Foswiki/Plugins/MetaCommentPlugin/MANIFEST b/lib/Foswiki/Plugins/MetaCommentPlugin/MANIFEST index 19a9e9a..4bfe575 100644 --- a/lib/Foswiki/Plugins/MetaCommentPlugin/MANIFEST +++ b/lib/Foswiki/Plugins/MetaCommentPlugin/MANIFEST @@ -3,6 +3,7 @@ data/System/MetaCommentPlugin.txt 0644 lib/Foswiki/Plugins/MetaCommentPlugin/Config.spec 0644 lib/Foswiki/Plugins/MetaCommentPlugin/Core.pm 0644 lib/Foswiki/Plugins/MetaCommentPlugin/DEPENDENCIES 0644 +lib/Foswiki/Plugins/MetaCommentPlugin/JQuery.pm 0644 lib/Foswiki/Plugins/MetaCommentPlugin.pm 0644 locale/MetaCommentPlugin/bg.po 0644 locale/MetaCommentPlugin/cs.po 0644 @@ -40,7 +41,11 @@ pub/System/MetaCommentPlugin/metacomment.pattern.uncompressed.css 0644 pub/System/MetaCommentPlugin/MetaCommentSnap1.jpeg 0644 pub/System/MetaCommentPlugin/metacomment.uncompressed.css 0644 pub/System/MetaCommentPlugin/metacomment.uncompressed.js 0644 +pub/System/MetaCommentPlugin/naviblocker.js 0644 +pub/System/MetaCommentPlugin/naviblocker.js.gz 0644 +pub/System/MetaCommentPlugin/naviblocker.uncompressed.js 0644 pub/System/MetaCommentPlugin/nobody.gif 0644 +pub/System/MetaCommentPlugin/nobody.png 0644 templates/metacomments.pattern.tmpl 0644 templates/metacommentsrss.tmpl 0644 templates/metacomments.tmpl 0644 diff --git a/locale/MetaCommentPlugin/Foswiki.pot b/locale/MetaCommentPlugin/Foswiki.pot index bf6d3d1..4d74977 100644 --- a/locale/MetaCommentPlugin/Foswiki.pot +++ b/locale/MetaCommentPlugin/Foswiki.pot @@ -1,175 +1,250 @@ msgid "" msgstr "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 msgid "%1 comments" msgstr "" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 msgid "Add a comment" msgstr "" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +msgid "Approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 +msgid "Approving all comments" +msgstr "" + +#: templates/metacomments.tmpl:403 msgid "Approving comment" msgstr "" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 msgid "Comments" msgstr "" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +msgid "Delete all comments?" +msgstr "" + +#: templates/metacomments.tmpl:337 msgid "Delete comment?" msgstr "" -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 msgid "Delete this comment" msgstr "" -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +msgid "Deleting all comments" +msgstr "" + +#: templates/metacomments.tmpl:338 msgid "Deleting comment" msgstr "" -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 msgid "Edit comment" msgstr "" -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 msgid "Edit this comment" msgstr "" -#: templates/metacomments.tmpl:11 -msgid "Marking comment" +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 +msgid "Mark all comments?" msgstr "" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:166 +msgid "Mark as read" +msgstr "" + +#: templates/metacomments.tmpl:387 +msgid "Marking all comments" +msgstr "" + +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "" -#: templates/metacomments.tmpl:56 +#: templates/metacomments.tmpl:65 msgid "One comment" msgstr "" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 msgid "Please log in to comment." msgstr "" -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 msgid "RSS comments feed for the %1 web" msgstr "" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -msgid "Reply on this comment" +#: templates/metacomments.tmpl:262 +msgid "Reply" msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" + +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 msgid "Submitting comment" msgstr "" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 msgid "Updating comment" msgstr "" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 msgid "Yes, delete" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +msgid "Yes, delete all" +msgstr "" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 msgid "permlink" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 msgid "updated" msgstr "" diff --git a/locale/MetaCommentPlugin/bg.po b/locale/MetaCommentPlugin/bg.po index 528cd36..cb1a3be 100644 --- a/locale/MetaCommentPlugin/bg.po +++ b/locale/MetaCommentPlugin/bg.po @@ -1,191 +1,273 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 #, fuzzy msgid "%1 comments" msgstr ":" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 #, fuzzy msgid "Add a comment" msgstr " " -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +#, fuzzy +msgid "Approve all comments?" +msgstr " " + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 #, fuzzy +msgid "Approving all comments" +msgstr " " + +#: templates/metacomments.tmpl:403 msgid "Approving comment" msgstr "" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 #, fuzzy msgid "Comments" msgstr ":" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +#, fuzzy +msgid "Delete all comments?" +msgstr " " + +#: templates/metacomments.tmpl:337 #, fuzzy msgid "Delete comment?" msgstr " " -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 #, fuzzy msgid "Delete this comment" msgstr " " -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +#, fuzzy +msgid "Deleting all comments" +msgstr " " + +#: templates/metacomments.tmpl:338 #, fuzzy msgid "Deleting comment" msgstr " " -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 #, fuzzy msgid "Edit comment" msgstr " " -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 #, fuzzy msgid "Edit this comment" msgstr " " -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 #, fuzzy -msgid "Marking comment" +msgid "Mark all comments?" +msgstr " " + +#: templates/metacomments.tmpl:166 +msgid "Mark as read" msgstr "" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:387 +#, fuzzy +msgid "Marking all comments" +msgstr " " + +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "" -#: templates/metacomments.tmpl:56 -#, fuzzy +#: templates/metacomments.tmpl:65 msgid "One comment" msgstr "" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 #, fuzzy msgid "Please log in to comment." msgstr " %1." -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 #, fuzzy msgid "RSS comments feed for the %1 web" msgstr " %1" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -#, fuzzy -msgid "Reply on this comment" -msgstr " " +#: templates/metacomments.tmpl:262 +msgid "Reply" +msgstr "" + +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 #, fuzzy msgid "Submitting comment" msgstr " " # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 #, fuzzy msgid "Updating comment" msgstr " " -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 #, fuzzy msgid "Yes, delete" msgstr "()" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +#, fuzzy +msgid "Yes, delete all" +msgstr "()" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 #, fuzzy msgid "permlink" msgstr " " -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 #, fuzzy msgid "updated" msgstr " " + +#, fuzzy +#~ msgid "Reply on this comment" +#~ msgstr " " diff --git a/locale/MetaCommentPlugin/cs.po b/locale/MetaCommentPlugin/cs.po index ef7e3f6..7196863 100644 --- a/locale/MetaCommentPlugin/cs.po +++ b/locale/MetaCommentPlugin/cs.po @@ -1,172 +1,247 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 msgid "%1 comments" msgstr "" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 msgid "Add a comment" msgstr "" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +msgid "Approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 +msgid "Approving all comments" +msgstr "" + +#: templates/metacomments.tmpl:403 msgid "Approving comment" msgstr "" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 msgid "Comments" msgstr "" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +msgid "Delete all comments?" +msgstr "" + +#: templates/metacomments.tmpl:337 msgid "Delete comment?" msgstr "" -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 msgid "Delete this comment" msgstr "" -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +msgid "Deleting all comments" +msgstr "" + +#: templates/metacomments.tmpl:338 msgid "Deleting comment" msgstr "" -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 msgid "Edit comment" msgstr "" -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 msgid "Edit this comment" msgstr "" -#: templates/metacomments.tmpl:11 -msgid "Marking comment" +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 +msgid "Mark all comments?" msgstr "" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:166 +msgid "Mark as read" +msgstr "" + +#: templates/metacomments.tmpl:387 +msgid "Marking all comments" +msgstr "" + +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "" -#: templates/metacomments.tmpl:56 +#: templates/metacomments.tmpl:65 msgid "One comment" msgstr "" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 msgid "Please log in to comment." msgstr "" -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 msgid "RSS comments feed for the %1 web" msgstr "" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -msgid "Reply on this comment" +#: templates/metacomments.tmpl:262 +msgid "Reply" msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" + +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 msgid "Submitting comment" msgstr "" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 msgid "Updating comment" msgstr "" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 msgid "Yes, delete" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +msgid "Yes, delete all" +msgstr "" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 msgid "permlink" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 msgid "updated" msgstr "" diff --git a/locale/MetaCommentPlugin/da.po b/locale/MetaCommentPlugin/da.po index 96567ff..a431993 100644 --- a/locale/MetaCommentPlugin/da.po +++ b/locale/MetaCommentPlugin/da.po @@ -1,191 +1,275 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 #, fuzzy msgid "%1 comments" msgstr "Kommentar" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 #, fuzzy msgid "Add a comment" msgstr "Vedhftet fil" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +#, fuzzy +msgid "Approve all comments?" +msgstr "Kommentar" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 +#, fuzzy +msgid "Approving all comments" +msgstr "Kommentar" + +#: templates/metacomments.tmpl:403 #, fuzzy msgid "Approving comment" msgstr "Kommentar" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "Fortryd" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 #, fuzzy msgid "Comments" msgstr "Kommentar" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +#, fuzzy +msgid "Delete all comments?" +msgstr "Slet vedhftet fil %1" + +#: templates/metacomments.tmpl:337 #, fuzzy msgid "Delete comment?" msgstr "Slet vedhftet fil %1" -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 #, fuzzy msgid "Delete this comment" msgstr "Slet vedhftet fil %1" -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +#, fuzzy +msgid "Deleting all comments" +msgstr "Slet vedhftet fil %1" + +#: templates/metacomments.tmpl:338 #, fuzzy msgid "Deleting comment" msgstr "Slet vedhftet fil %1" -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 #, fuzzy msgid "Edit comment" msgstr "Kommentar" -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 #, fuzzy msgid "Edit this comment" msgstr "Editr denne sides tekst (e)" -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 +#, fuzzy +msgid "Mark all comments?" +msgstr "Kommentar" + +#: templates/metacomments.tmpl:166 +msgid "Mark as read" +msgstr "" + +#: templates/metacomments.tmpl:387 #, fuzzy -msgid "Marking comment" +msgid "Marking all comments" msgstr "Kommentar" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "OK" -#: templates/metacomments.tmpl:56 +#: templates/metacomments.tmpl:65 #, fuzzy msgid "One comment" msgstr "Kommentar" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 #, fuzzy msgid "Please log in to comment." msgstr "Log ind for at fortstte." -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 #, fuzzy msgid "RSS comments feed for the %1 web" msgstr "Velkommen til %1-webbet" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -#, fuzzy -msgid "Reply on this comment" -msgstr "Husk mig p denne PC" +#: templates/metacomments.tmpl:262 +msgid "Reply" +msgstr "" + +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "Send" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 #, fuzzy msgid "Submitting comment" msgstr "Editr denne sides tekst (e)" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 #, fuzzy msgid "Updating comment" msgstr "Kommentar" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 #, fuzzy msgid "Yes, delete" msgstr "(slet)" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +#, fuzzy +msgid "Yes, delete all" +msgstr "(slet)" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "ny" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 #, fuzzy msgid "permlink" msgstr "Opdatr links" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 #, fuzzy msgid "updated" msgstr "Opdatr" + +#, fuzzy +#~ msgid "Reply on this comment" +#~ msgstr "Husk mig p denne PC" diff --git a/locale/MetaCommentPlugin/de.po b/locale/MetaCommentPlugin/de.po index a41c2cf..8153627 100644 --- a/locale/MetaCommentPlugin/de.po +++ b/locale/MetaCommentPlugin/de.po @@ -14,178 +14,253 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: vi\n" -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 msgid "%1 comments" msgstr "%1 Kommentare" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 msgid "Add a comment" msgstr "Kommentar hinzufügen" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "Alles freigeben" + +#: templates/metacomments.tmpl:371 +msgid "Approve all comments?" +msgstr "Alle Kommentar freigeben?" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "Kommentar freigeben?" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "Diesen Kommentar freigeben" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 +msgid "Approving all comments" +msgstr "Alle Kommentare werden freigegeben" + +#: templates/metacomments.tmpl:403 msgid "Approving comment" msgstr "Kommentar wird freigegeben" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "Sind Sie sicher, dass Sie alle Kommentar freigegeben wollen?" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" "Sind Sie sicher, dass Sie Kommentar %1 von %2 erstellt am %3 freigeben " "wollen?" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "Sind Sie sicher, dass Sie alle Kommentar löschen wollen?" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" "Sind Sie sicher, dass Sie Kommentar %1 von %2 erstellt am %3 löschen wollen?" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "Sind Sie sicher, dass Sie alle Kommentar als gelesen markieren wollen?" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "Fett" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "Abbrechen" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "Klicken, um als gelesen zu markieren" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "Dieses Thema kommentieren" + #: templates/metacommentsrss.tmpl:7 msgid "Comments" msgstr "Kommentare" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "Alle löschen" + +#: templates/metacomments.tmpl:356 +msgid "Delete all comments?" +msgstr "Alle Kommentar löschen?" + +#: templates/metacomments.tmpl:337 msgid "Delete comment?" msgstr "Kommentar löschen?" -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 msgid "Delete this comment" msgstr "Diesen Kommentar löschen" -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +msgid "Deleting all comments" +msgstr "Lösche alle Kommentare" + +#: templates/metacomments.tmpl:338 msgid "Deleting comment" msgstr "Kommentar wird gelöscht" -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 msgid "Edit comment" msgstr "Kommentar bearbeiten" -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 msgid "Edit this comment" msgstr "Diesen Kommentar bearbeiten" -#: templates/metacomments.tmpl:11 -msgid "Marking comment" -msgstr "Kommentar wird markiert" +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "Kursiv" + +#: templates/metacomments.tmpl:386 +msgid "Mark all comments?" +msgstr "Alle Kommentare markieren?" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:166 +msgid "Mark as read" +msgstr "Als gelesen markieren" + +#: templates/metacomments.tmpl:387 +msgid "Marking all comments" +msgstr "Markiere alle Kommentar" + +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "Weitere Zeichenformate" + +#: templates/metacomments.tmpl:530 msgid "Name" -msgstr "" +msgstr "Name" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "Nein, danke" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "OK" -#: templates/metacomments.tmpl:56 +#: templates/metacomments.tmpl:65 msgid "One comment" msgstr "Ein Kommentar" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "Bitte anmelden oder registrieren, um zu kommentieren." -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 msgid "Please log in to comment." msgstr "Bitte anmelden, um zu kommentieren." -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 msgid "RSS comments feed for the %1 web" msgstr "RSS Kommentar Feed für das %1 Web" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "RSS Feed fr Kommentar zu diesem Topic" -#: templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:34 +msgid "Remove Format" +msgstr "Format entfernen" + +#: templates/metacomments.tmpl:262 +msgid "Reply" +msgstr "Antworten" + +#: templates/metacomments.tmpl:442 msgid "Reply on comment" msgstr "Kommentar beantworten" -#: templates/metacomments.tmpl:184 -msgid "Reply on this comment" -msgstr "Diesen Kommentar beantworten" - -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "Kommentieren leider nicht erlaubt." -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "Übermitteln" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 msgid "Submitting comment" msgstr "Kommentar wird abgeschickt" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "Unterstrichen" + +#: templates/metacomments.tmpl:422 msgid "Updating comment" msgstr "Kommentar wird gespeichert" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "Ja, freigeben" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "Ja, alles freigeben" + +#: templates/metacomments.tmpl:348 msgid "Yes, delete" msgstr "Ja, löschen" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +msgid "Yes, delete all" +msgstr "Ja, alle löschen" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "Ja, alles markieren" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "im tab" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "linear" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "benötigt Freigabe" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "neu" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 msgid "permlink" msgstr "permlink" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "umgekehrt" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "verzweigt" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 msgid "updated" msgstr "geändert" diff --git a/locale/MetaCommentPlugin/el.po b/locale/MetaCommentPlugin/el.po index 8a6588f..827563e 100644 --- a/locale/MetaCommentPlugin/el.po +++ b/locale/MetaCommentPlugin/el.po @@ -1,192 +1,272 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 #, fuzzy msgid "%1 comments" msgstr ":" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 -#, fuzzy +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 msgid "Add a comment" msgstr "" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +#, fuzzy +msgid "Approve all comments?" +msgstr " " + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 #, fuzzy +msgid "Approving all comments" +msgstr " " + +#: templates/metacomments.tmpl:403 msgid "Approving comment" msgstr "" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 #, fuzzy msgid "Comments" msgstr ":" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +#, fuzzy +msgid "Delete all comments?" +msgstr " " + +#: templates/metacomments.tmpl:337 #, fuzzy msgid "Delete comment?" msgstr " " -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 #, fuzzy msgid "Delete this comment" msgstr " " -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +#, fuzzy +msgid "Deleting all comments" +msgstr " " + +#: templates/metacomments.tmpl:338 #, fuzzy msgid "Deleting comment" msgstr " " -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 #, fuzzy msgid "Edit comment" msgstr " " -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 #, fuzzy msgid "Edit this comment" msgstr " " -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 #, fuzzy -msgid "Marking comment" +msgid "Mark all comments?" +msgstr ":" + +#: templates/metacomments.tmpl:166 +msgid "Mark as read" +msgstr "" + +#: templates/metacomments.tmpl:387 +#, fuzzy +msgid "Marking all comments" +msgstr " " + +#: templates/metacomments.tmpl:33 +msgid "More character formats" msgstr "" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "OK" -#: templates/metacomments.tmpl:56 -#, fuzzy +#: templates/metacomments.tmpl:65 msgid "One comment" msgstr "" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 #, fuzzy msgid "Please log in to comment." msgstr " %1." -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 #, fuzzy msgid "RSS comments feed for the %1 web" msgstr " %1" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -#, fuzzy -msgid "Reply on this comment" -msgstr " " +#: templates/metacomments.tmpl:262 +msgid "Reply" +msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" + +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 #, fuzzy msgid "Submitting comment" msgstr " " # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 #, fuzzy msgid "Updating comment" msgstr " " -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 #, fuzzy msgid "Yes, delete" msgstr "()" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +#, fuzzy +msgid "Yes, delete all" +msgstr "()" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 -#, fuzzy +#: templates/metacomments.tmpl:215 msgid "new" msgstr "" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 #, fuzzy msgid "permlink" msgstr " " -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 #, fuzzy msgid "updated" msgstr " " + +#, fuzzy +#~ msgid "Reply on this comment" +#~ msgstr " " diff --git a/locale/MetaCommentPlugin/es.po b/locale/MetaCommentPlugin/es.po index ef7e3f6..7196863 100644 --- a/locale/MetaCommentPlugin/es.po +++ b/locale/MetaCommentPlugin/es.po @@ -1,172 +1,247 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 msgid "%1 comments" msgstr "" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 msgid "Add a comment" msgstr "" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +msgid "Approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 +msgid "Approving all comments" +msgstr "" + +#: templates/metacomments.tmpl:403 msgid "Approving comment" msgstr "" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 msgid "Comments" msgstr "" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +msgid "Delete all comments?" +msgstr "" + +#: templates/metacomments.tmpl:337 msgid "Delete comment?" msgstr "" -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 msgid "Delete this comment" msgstr "" -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +msgid "Deleting all comments" +msgstr "" + +#: templates/metacomments.tmpl:338 msgid "Deleting comment" msgstr "" -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 msgid "Edit comment" msgstr "" -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 msgid "Edit this comment" msgstr "" -#: templates/metacomments.tmpl:11 -msgid "Marking comment" +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 +msgid "Mark all comments?" msgstr "" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:166 +msgid "Mark as read" +msgstr "" + +#: templates/metacomments.tmpl:387 +msgid "Marking all comments" +msgstr "" + +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "" -#: templates/metacomments.tmpl:56 +#: templates/metacomments.tmpl:65 msgid "One comment" msgstr "" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 msgid "Please log in to comment." msgstr "" -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 msgid "RSS comments feed for the %1 web" msgstr "" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -msgid "Reply on this comment" +#: templates/metacomments.tmpl:262 +msgid "Reply" msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" + +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 msgid "Submitting comment" msgstr "" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 msgid "Updating comment" msgstr "" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 msgid "Yes, delete" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +msgid "Yes, delete all" +msgstr "" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 msgid "permlink" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 msgid "updated" msgstr "" diff --git a/locale/MetaCommentPlugin/fi.po b/locale/MetaCommentPlugin/fi.po index 05ba39f..e0452ce 100644 --- a/locale/MetaCommentPlugin/fi.po +++ b/locale/MetaCommentPlugin/fi.po @@ -1,191 +1,275 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 #, fuzzy msgid "%1 comments" msgstr "Kommentit:" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 #, fuzzy msgid "Add a comment" msgstr "Liite" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +#, fuzzy +msgid "Approve all comments?" +msgstr "Kommentti" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 +#, fuzzy +msgid "Approving all comments" +msgstr "Kommentti" + +#: templates/metacomments.tmpl:403 #, fuzzy msgid "Approving comment" msgstr "Kommentti" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "Peru" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 #, fuzzy msgid "Comments" msgstr "Kommentit:" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +#, fuzzy +msgid "Delete all comments?" +msgstr "Poista liite" + +#: templates/metacomments.tmpl:337 #, fuzzy msgid "Delete comment?" msgstr "Poista liite" -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 #, fuzzy msgid "Delete this comment" msgstr "Poista liite" -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +#, fuzzy +msgid "Deleting all comments" +msgstr "Poista liite" + +#: templates/metacomments.tmpl:338 #, fuzzy msgid "Deleting comment" msgstr "Poista liite" -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 #, fuzzy msgid "Edit comment" msgstr "Muokkaa teksti" -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 #, fuzzy msgid "Edit this comment" msgstr "Muokkaa tt taulukkoa" -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 +#, fuzzy +msgid "Mark all comments?" +msgstr "Kommentti" + +#: templates/metacomments.tmpl:166 +msgid "Mark as read" +msgstr "" + +#: templates/metacomments.tmpl:387 #, fuzzy -msgid "Marking comment" +msgid "Marking all comments" msgstr "Kommentti" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "OK" -#: templates/metacomments.tmpl:56 +#: templates/metacomments.tmpl:65 #, fuzzy msgid "One comment" msgstr "Kommentti" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 #, fuzzy msgid "Please log in to comment." msgstr "Ole hyv ja ota yhteytt %1." -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 #, fuzzy msgid "RSS comments feed for the %1 web" msgstr "Tervetuloa %1 verkkoon" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -#, fuzzy -msgid "Reply on this comment" -msgstr "Muista minut tll tietokoneella" +#: templates/metacomments.tmpl:262 +msgid "Reply" +msgstr "" + +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "Lhet" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 #, fuzzy msgid "Submitting comment" msgstr "Muokkaa tt taulukkoa" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 #, fuzzy msgid "Updating comment" msgstr "Muokkaa teksti" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 #, fuzzy msgid "Yes, delete" msgstr "(poista)" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +#, fuzzy +msgid "Yes, delete all" +msgstr "(poista)" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 #, fuzzy msgid "permlink" msgstr "Pivit linkit" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 #, fuzzy msgid "updated" msgstr "Pivit linkit" + +#, fuzzy +#~ msgid "Reply on this comment" +#~ msgstr "Muista minut tll tietokoneella" diff --git a/locale/MetaCommentPlugin/fr.po b/locale/MetaCommentPlugin/fr.po index 8472a48..da83b3c 100644 --- a/locale/MetaCommentPlugin/fr.po +++ b/locale/MetaCommentPlugin/fr.po @@ -1,182 +1,274 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 msgid "%1 comments" msgstr "%1 Commentaires" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 msgid "Add a comment" msgstr "Ajouter un commentaire" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +#, fuzzy +msgid "Approve all comments?" +msgstr "Approuver commentaire ?" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "Approuver commentaire ?" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "Approuver ce commentaire" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 +#, fuzzy +msgid "Approving all comments" +msgstr "Approuver commentaire ?" + +#: templates/metacomments.tmpl:403 #, fuzzy msgid "Approving comment" msgstr "Approuver commentaire ?" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +#, fuzzy +msgid "Are you sure that you want to approve all comments?" +msgstr "" +"Etes-vous sr que vous voulez approuver commentaire %1 post par %2 sur %3 ?" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" "Etes-vous sr que vous voulez approuver commentaire %1 post par %2 sur %3 ?" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +#, fuzzy +msgid "Are you sure that you want to delete all comments ?" +msgstr "" +"Etes-vous sr que vous voulez effacer le commentaire %1 post par %2 sur %3 ?" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" "Etes-vous sr que vous voulez effacer le commentaire %1 post par %2 sur %3 ?" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +#, fuzzy +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" +"Etes-vous sr que vous voulez approuver commentaire %1 post par %2 sur %3 ?" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "Annuler" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 #, fuzzy msgid "Click to mark as read" msgstr "marquer comme lu" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 msgid "Comments" msgstr "Commentaires:" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +#, fuzzy +msgid "Delete all comments?" +msgstr "Effacer commentaire ?" + +#: templates/metacomments.tmpl:337 msgid "Delete comment?" msgstr "Effacer commentaire ?" -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 msgid "Delete this comment" msgstr "Effacer ce commentaie" -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +#, fuzzy +msgid "Deleting all comments" +msgstr "Effacer commentaire ?" + +#: templates/metacomments.tmpl:338 #, fuzzy msgid "Deleting comment" msgstr "Effacer commentaire ?" -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 msgid "Edit comment" msgstr "Modifier le Commentaire" -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 msgid "Edit this comment" msgstr "Editer ce commentaire" -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 #, fuzzy -msgid "Marking comment" +msgid "Mark all comments?" msgstr "un Commentaire" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:166 +#, fuzzy +msgid "Mark as read" +msgstr "marquer comme lu" + +#: templates/metacomments.tmpl:387 +#, fuzzy +msgid "Marking all comments" +msgstr "un Commentaire" + +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "non, merci" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "OK" -#: templates/metacomments.tmpl:56 +#: templates/metacomments.tmpl:65 msgid "One comment" msgstr "un Commentaire" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 #, fuzzy msgid "Please log in or register to comment." msgstr "S'il vous plait [[%1][login]] ou bien [[%2][register]] pour commenter." -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 #, fuzzy msgid "Please log in to comment." msgstr "S'il vous plait [[%1][login]] pour commenter." -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 msgid "RSS comments feed for the %1 web" msgstr "Flux RSS des commentaires de l'% 1 Web" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "Flux RSS des commentaires sur ce sujet" -#: templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:34 +msgid "Remove Format" +msgstr "" + +#: templates/metacomments.tmpl:262 +msgid "Reply" +msgstr "" + +#: templates/metacomments.tmpl:442 msgid "Reply on comment" msgstr "Rpondre au commentaire" -#: templates/metacomments.tmpl:184 -msgid "Reply on this comment" -msgstr "Rpondre ce commentaire" - -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "Dsol, commenter n'est pas permis." -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "Envoyer" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 #, fuzzy msgid "Submitting comment" msgstr "Editer ce commentaire" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 #, fuzzy msgid "Updating comment" msgstr "Modifier le Commentaire" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "oui, approuver" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +#, fuzzy +msgid "Yes, approve all" +msgstr "oui, approuver" + +#: templates/metacomments.tmpl:348 msgid "Yes, delete" msgstr "oui, effacer" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +#, fuzzy +msgid "Yes, delete all" +msgstr "oui, effacer" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "besoin dapprobation" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 msgid "permlink" msgstr "lien perma" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 msgid "updated" msgstr "" + +#~ msgid "Reply on this comment" +#~ msgstr "Rpondre ce commentaire" diff --git a/locale/MetaCommentPlugin/hu.po b/locale/MetaCommentPlugin/hu.po index 6df8e3e..7196863 100644 --- a/locale/MetaCommentPlugin/hu.po +++ b/locale/MetaCommentPlugin/hu.po @@ -1,193 +1,247 @@ -#: templates/metacomments.tmpl +#: templates/metacomments.tmpl:66 msgid "%1 comments" msgstr "" -#: data/System/MetaCommentDeleteTemplate.txt -msgid "%1 deleted a comment in %2" +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 +msgid "Add a comment" msgstr "" -#: data/System/MetaCommentSaveTemplate.txt -msgid "%1 saved a comment in %2" +#: templates/metacomments.tmpl:167 +msgid "Approve all" msgstr "" -#: data/System/MetaCommentSaveTemplate.txt -msgid "%1 saved a comment in %2:" +#: templates/metacomments.tmpl:371 +msgid "Approve all comments?" msgstr "" -#: data/System/MetaCommentUpdateTemplate.txt -msgid "%1 updated a comment in %2" +#: templates/metacomments.tmpl:402 +msgid "Approve comment?" msgstr "" -#: data/System/MetaCommentUpdateTemplate.txt -msgid "%1 updated a comment in %2:" +#: templates/metacomments.tmpl:255 +msgid "Approve this comment" msgstr "" -#: data/System/MetaCommentNotifyTemplate.txt -msgid "%1 wants to notify you about a comment in %2" +#: templates/metacomments.tmpl:372 +msgid "Approving all comments" msgstr "" -#: data/System/MetaCommentNotifyTemplate.txt -msgid "%1 wants to notify you about a comment in %2:" +#: templates/metacomments.tmpl:403 +msgid "Approving comment" msgstr "" -#: data/System/MetaCommentDeleteTemplate.txt -msgid "(No text)" +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" msgstr "" -#: data/System/MetaCommentDeleteTemplate.txt -msgid "(No title)" +#: templates/metacomments.tmpl:409 +msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: data/System/MetaCommentNotifyTemplate.txt -#: data/System/MetaCommentSaveTemplate.txt -#: data/System/MetaCommentUpdateTemplate.txt -msgid "(no text)" +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" msgstr "" -#: data/System/MetaCommentNotifyTemplate.txt -#: data/System/MetaCommentSaveTemplate.txt -#: data/System/MetaCommentUpdateTemplate.txt -msgid "(no title)" +#: templates/metacomments.tmpl:344 +msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl -msgid "Add a comment" +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" msgstr "" -#: templates/metacomments.tmpl -msgid "Add a comment to this topic" +#: templates/metacomments.tmpl:30 +msgid "Bold" msgstr "" -#: templates/metacomments.tmpl -msgid "Approve comment?" +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 +msgid "Cancel" msgstr "" -#: templates/metacomments.tmpl -msgid "Approve this comment" +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 +msgid "Click to mark as read" msgstr "" -#: templates/metacomments.tmpl -msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" msgstr "" -#: templates/metacomments.tmpl -msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" +#: templates/metacommentsrss.tmpl:7 +msgid "Comments" msgstr "" -#: templates/metacomments.tmpl -msgid "Are you sure that you want to notify comment %1 posted by %2 on %3?" +#: templates/metacomments.tmpl:168 +msgid "Delete all" msgstr "" -#: templates/metacomments.tmpl -msgid "Cancel" +#: templates/metacomments.tmpl:356 +msgid "Delete all comments?" msgstr "" -#: templates/metacommentsrss.tmpl -msgid "Comments" -msgstr "" - -#: templates/metacomments.tmpl +#: templates/metacomments.tmpl:337 msgid "Delete comment?" msgstr "" -#: templates/metacomments.tmpl +#: templates/metacomments.tmpl:257 msgid "Delete this comment" msgstr "" -#: templates/metacomments.tmpl -msgid "Don't notify anyone" +#: templates/metacomments.tmpl:357 +msgid "Deleting all comments" +msgstr "" + +#: templates/metacomments.tmpl:338 +msgid "Deleting comment" msgstr "" -#: templates/metacomments.tmpl +#: templates/metacomments.tmpl:421 msgid "Edit comment" msgstr "" -#: templates/metacomments.tmpl +#: templates/metacomments.tmpl:253 msgid "Edit this comment" msgstr "" -#: templates/metacomments.tmpl +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 +msgid "Mark all comments?" +msgstr "" + +#: templates/metacomments.tmpl:166 msgid "Mark as read" msgstr "" -#: templates/metacomments.tmpl -msgid "No, thanks" +#: templates/metacomments.tmpl:387 +msgid "Marking all comments" msgstr "" -#: templates/metacomments.tmpl -msgid "Notify comment?" +#: templates/metacomments.tmpl:33 +msgid "More character formats" msgstr "" -#: templates/metacomments.tmpl -msgid "Notify these people" +#: templates/metacomments.tmpl:530 +msgid "Name" msgstr "" -#: templates/metacomments.tmpl -msgid "Notify this comment" +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 +msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "" -#: templates/metacomments.tmpl +#: templates/metacomments.tmpl:65 msgid "One comment" msgstr "" -#: templates/metacomments.tmpl -msgid "Please [[%1][login]] or [[%2][register]] to comment." +#: templates/metacomments.tmpl:88 +msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl -msgid "Please [[%1][login]] to comment." +#: templates/metacomments.tmpl:89 +msgid "Please log in to comment." msgstr "" -#: templates/metacomments.tmpl -msgid "" -"Please note, that people who have already been notified will not be notified " -"again." -msgstr "" - -#: data/System/MetaCommentPlugin.txt +#: data/System/MetaCommentPlugin.txt:258 msgid "RSS comments feed for the %1 web" msgstr "" -#: templates/metacomments.tmpl +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl -msgid "Reply on this comment" +#: templates/metacomments.tmpl:262 +msgid "Reply" msgstr "" -#: templates/metacomments.tmpl +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" + +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "" -#: templates/metacomments.tmpl -msgid "Who do you want to notify about this comment?" +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 +msgid "Submitting comment" msgstr "" -#: templates/metacomments.tmpl +# somewhere +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 +msgid "Title" +msgstr "Titel" + +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 +msgid "Updating comment" +msgstr "" + +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 msgid "Yes, delete" msgstr "" -#: templates/metacomments.tmpl +#: templates/metacomments.tmpl:363 +msgid "Yes, delete all" +msgstr "" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 +msgid "inside tab" +msgstr "" + +#: templates/metacomments.tmpl:135 +msgid "linear" +msgstr "" + +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl +#: templates/metacomments.tmpl:215 +msgid "new" +msgstr "" + +#: templates/metacomments.tmpl:225 msgid "permlink" msgstr "" + +#: templates/metacomments.tmpl:135 +msgid "reverse" +msgstr "" + +#: templates/metacomments.tmpl:135 +msgid "threaded" +msgstr "" + +#: templates/metacomments.tmpl:217 +msgid "updated" +msgstr "" diff --git a/locale/MetaCommentPlugin/it.po b/locale/MetaCommentPlugin/it.po index 045f837..6f8feab 100644 --- a/locale/MetaCommentPlugin/it.po +++ b/locale/MetaCommentPlugin/it.po @@ -1,179 +1,265 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 msgid "%1 comments" msgstr "" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 msgid "Add a comment" msgstr "Aggiungere un commento" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +#, fuzzy +msgid "Approve all comments?" +msgstr "Approvare commento?" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "Approvare commento?" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "Approvare questo commento" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 +#, fuzzy +msgid "Approving all comments" +msgstr "Approvare commento?" + +#: templates/metacomments.tmpl:403 #, fuzzy msgid "Approving comment" msgstr "Approvare commento?" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" -msgstr "Cancellare" +msgstr "Annullare" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 #, fuzzy msgid "Click to mark as read" msgstr "Contrassegnare come letto" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 msgid "Comments" msgstr "Commenti" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +#, fuzzy +msgid "Delete all comments?" +msgstr "Cancellare il commento?" + +#: templates/metacomments.tmpl:337 msgid "Delete comment?" msgstr "Cancellare il commento?" -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 msgid "Delete this comment" msgstr "Cancellare questo commento" -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +#, fuzzy +msgid "Deleting all comments" +msgstr "Cancellare il commento?" + +#: templates/metacomments.tmpl:338 #, fuzzy msgid "Deleting comment" msgstr "Cancellare il commento?" -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 msgid "Edit comment" msgstr "Modificare commento" -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 msgid "Edit this comment" msgstr "Modificare questo commento" -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 +#, fuzzy +msgid "Mark all comments?" +msgstr "Un commento" + +#: templates/metacomments.tmpl:166 +#, fuzzy +msgid "Mark as read" +msgstr "Contrassegnare come letto" + +#: templates/metacomments.tmpl:387 #, fuzzy -msgid "Marking comment" +msgid "Marking all comments" msgstr "Un commento" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "No, grazie" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "" -#: templates/metacomments.tmpl:56 +#: templates/metacomments.tmpl:65 msgid "One comment" msgstr "Un commento" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 #, fuzzy msgid "Please log in to comment." msgstr "Rispondere a questo commento" -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 msgid "RSS comments feed for the %1 web" msgstr "" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "RSS feed dei commenti su quest'argomento" -#: templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:34 +msgid "Remove Format" +msgstr "" + +#: templates/metacomments.tmpl:262 +msgid "Reply" +msgstr "" + +#: templates/metacomments.tmpl:442 msgid "Reply on comment" msgstr "Rispondere al commento" -#: templates/metacomments.tmpl:184 -msgid "Reply on this comment" -msgstr "Rispondere a questo commento" - -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "Non possibile inserire commenti." -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "Sottoporre" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 #, fuzzy msgid "Submitting comment" msgstr "Modificare questo commento" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 #, fuzzy msgid "Updating comment" msgstr "Modificare commento" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "S, approvare" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +#, fuzzy +msgid "Yes, approve all" +msgstr "S, approvare" + +#: templates/metacomments.tmpl:348 msgid "Yes, delete" msgstr "S, cancellare" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +#, fuzzy +msgid "Yes, delete all" +msgstr "S, cancellare" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "necessita approvazione" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 msgid "permlink" msgstr "permalink" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 msgid "updated" msgstr "" + +#~ msgid "Reply on this comment" +#~ msgstr "Rispondere a questo commento" diff --git a/locale/MetaCommentPlugin/ja.po b/locale/MetaCommentPlugin/ja.po index b9ba23e..ac2789f 100644 --- a/locale/MetaCommentPlugin/ja.po +++ b/locale/MetaCommentPlugin/ja.po @@ -1,191 +1,255 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 #, fuzzy msgid "%1 comments" msgstr ":" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 -#, fuzzy +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 msgid "Add a comment" msgstr "" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +msgid "Approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 -#, fuzzy +#: templates/metacomments.tmpl:372 +msgid "Approving all comments" +msgstr "" + +#: templates/metacomments.tmpl:403 msgid "Approving comment" msgstr "" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 #, fuzzy msgid "Comments" msgstr ":" -#: templates/metacomments.tmpl:299 -#, fuzzy +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +msgid "Delete all comments?" +msgstr "" + +#: templates/metacomments.tmpl:337 msgid "Delete comment?" msgstr "" -#: templates/metacomments.tmpl:193 -#, fuzzy +#: templates/metacomments.tmpl:257 msgid "Delete this comment" msgstr "" -#: templates/metacomments.tmpl:9 -#, fuzzy +#: templates/metacomments.tmpl:357 +msgid "Deleting all comments" +msgstr "" + +#: templates/metacomments.tmpl:338 msgid "Deleting comment" msgstr "" -#: templates/metacomments.tmpl:341 -#, fuzzy +#: templates/metacomments.tmpl:421 msgid "Edit comment" msgstr "" -#: templates/metacomments.tmpl:187 -#, fuzzy +#: templates/metacomments.tmpl:253 msgid "Edit this comment" msgstr "" -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 #, fuzzy -msgid "Marking comment" +msgid "Mark all comments?" +msgstr ":" + +#: templates/metacomments.tmpl:166 +msgid "Mark as read" +msgstr "" + +#: templates/metacomments.tmpl:387 +msgid "Marking all comments" msgstr "" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "OK" -#: templates/metacomments.tmpl:56 -#, fuzzy +#: templates/metacomments.tmpl:65 msgid "One comment" msgstr "" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 #, fuzzy msgid "Please log in to comment." msgstr "%1" -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 #, fuzzy msgid "RSS comments feed for the %1 web" msgstr " %1" -#: templates/metacomments.tmpl:55 -#, fuzzy +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -msgid "Reply on this comment" +#: templates/metacomments.tmpl:262 +msgid "Reply" msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" + +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "" -#: templates/metacomments.tmpl:7 -#, fuzzy +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 msgid "Submitting comment" msgstr "" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 -#, fuzzy +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 msgid "Updating comment" msgstr "" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 #, fuzzy msgid "Yes, delete" msgstr "()" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +#, fuzzy +msgid "Yes, delete all" +msgstr "()" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 -#, fuzzy +#: templates/metacomments.tmpl:225 msgid "permlink" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 #, fuzzy msgid "updated" msgstr ":" diff --git a/locale/MetaCommentPlugin/ko.po b/locale/MetaCommentPlugin/ko.po index 2b03ce0..ba8289d 100644 --- a/locale/MetaCommentPlugin/ko.po +++ b/locale/MetaCommentPlugin/ko.po @@ -1,188 +1,270 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 #, fuzzy msgid "%1 comments" msgstr ":" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 -#, fuzzy +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 msgid "Add a comment" msgstr "" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +#, fuzzy +msgid "Approve all comments?" +msgstr ":" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 +#, fuzzy +msgid "Approving all comments" +msgstr ":" + +#: templates/metacomments.tmpl:403 #, fuzzy msgid "Approving comment" msgstr ":" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 #, fuzzy msgid "Comments" msgstr ":" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +#, fuzzy +msgid "Delete all comments?" +msgstr " " + +#: templates/metacomments.tmpl:337 #, fuzzy msgid "Delete comment?" msgstr " " -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 #, fuzzy msgid "Delete this comment" msgstr " " -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +#, fuzzy +msgid "Deleting all comments" +msgstr " " + +#: templates/metacomments.tmpl:338 #, fuzzy msgid "Deleting comment" msgstr " " -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 #, fuzzy msgid "Edit comment" msgstr " " -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 #, fuzzy msgid "Edit this comment" msgstr " " -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 #, fuzzy -msgid "Marking comment" +msgid "Mark all comments?" msgstr ":" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:166 +msgid "Mark as read" +msgstr "" + +#: templates/metacomments.tmpl:387 +#, fuzzy +msgid "Marking all comments" +msgstr ":" + +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "" -#: templates/metacomments.tmpl:56 +#: templates/metacomments.tmpl:65 #, fuzzy msgid "One comment" msgstr ":" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 #, fuzzy msgid "Please log in to comment." msgstr "%1 ." -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 #, fuzzy msgid "RSS comments feed for the %1 web" msgstr " %1 Web ." -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -#, fuzzy -msgid "Reply on this comment" -msgstr " " +#: templates/metacomments.tmpl:262 +msgid "Reply" +msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" + +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 #, fuzzy msgid "Submitting comment" msgstr " " # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 #, fuzzy msgid "Updating comment" msgstr " " -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 msgid "Yes, delete" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +msgid "Yes, delete all" +msgstr "" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 msgid "permlink" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 msgid "updated" msgstr "" + +#, fuzzy +#~ msgid "Reply on this comment" +#~ msgstr " " diff --git a/locale/MetaCommentPlugin/nl.po b/locale/MetaCommentPlugin/nl.po index 262b6f1..c3a81b9 100644 --- a/locale/MetaCommentPlugin/nl.po +++ b/locale/MetaCommentPlugin/nl.po @@ -1,191 +1,275 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 #, fuzzy msgid "%1 comments" msgstr "Opmerkingen:" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 #, fuzzy msgid "Add a comment" msgstr "Bijlage" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +#, fuzzy +msgid "Approve all comments?" +msgstr "Toelichting" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 +#, fuzzy +msgid "Approving all comments" +msgstr "Toelichting" + +#: templates/metacomments.tmpl:403 #, fuzzy msgid "Approving comment" msgstr "Toelichting" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "Afbreken" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 #, fuzzy msgid "Comments" msgstr "Opmerkingen:" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +#, fuzzy +msgid "Delete all comments?" +msgstr "Bijlage %1 verwijderen" + +#: templates/metacomments.tmpl:337 #, fuzzy msgid "Delete comment?" msgstr "Bijlage %1 verwijderen" -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 #, fuzzy msgid "Delete this comment" msgstr "Bijlage %1 verwijderen" -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +#, fuzzy +msgid "Deleting all comments" +msgstr "Bijlage %1 verwijderen" + +#: templates/metacomments.tmpl:338 #, fuzzy msgid "Deleting comment" msgstr "Bijlage %1 verwijderen" -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 #, fuzzy msgid "Edit comment" msgstr "Bewerk tekst" -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 #, fuzzy msgid "Edit this comment" msgstr "Bewerk deze tabel" -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 +#, fuzzy +msgid "Mark all comments?" +msgstr "Toelichting" + +#: templates/metacomments.tmpl:166 +msgid "Mark as read" +msgstr "" + +#: templates/metacomments.tmpl:387 #, fuzzy -msgid "Marking comment" +msgid "Marking all comments" msgstr "Toelichting" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "OK" -#: templates/metacomments.tmpl:56 +#: templates/metacomments.tmpl:65 #, fuzzy msgid "One comment" msgstr "Toelichting" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 #, fuzzy msgid "Please log in to comment." msgstr "Log in om verder te gaan." -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 #, fuzzy msgid "RSS comments feed for the %1 web" msgstr "Welkom in het %1 web" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -#, fuzzy -msgid "Reply on this comment" -msgstr "Onthou mij op deze computer" +#: templates/metacomments.tmpl:262 +msgid "Reply" +msgstr "" + +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "Versturen" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 #, fuzzy msgid "Submitting comment" msgstr "Bewerk deze tabel" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 #, fuzzy msgid "Updating comment" msgstr "Bewerk tekst" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 #, fuzzy msgid "Yes, delete" msgstr "(verwijderen)" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +#, fuzzy +msgid "Yes, delete all" +msgstr "(verwijderen)" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "nieuw" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 #, fuzzy msgid "permlink" msgstr "Links verversen" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 #, fuzzy msgid "updated" msgstr "Bijwerken" + +#, fuzzy +#~ msgid "Reply on this comment" +#~ msgstr "Onthou mij op deze computer" diff --git a/locale/MetaCommentPlugin/no.po b/locale/MetaCommentPlugin/no.po index 5c29878..673fc90 100644 --- a/locale/MetaCommentPlugin/no.po +++ b/locale/MetaCommentPlugin/no.po @@ -1,191 +1,275 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 #, fuzzy msgid "%1 comments" msgstr "Kommentarer:" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 #, fuzzy msgid "Add a comment" msgstr "Vedlegg" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +#, fuzzy +msgid "Approve all comments?" +msgstr "Kommentar" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 +#, fuzzy +msgid "Approving all comments" +msgstr "Kommentar" + +#: templates/metacomments.tmpl:403 #, fuzzy msgid "Approving comment" msgstr "Kommentar" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "Avbryt" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 #, fuzzy msgid "Comments" msgstr "Kommentarer:" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +#, fuzzy +msgid "Delete all comments?" +msgstr "Slett vedlegg" + +#: templates/metacomments.tmpl:337 #, fuzzy msgid "Delete comment?" msgstr "Slett vedlegg" -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 #, fuzzy msgid "Delete this comment" msgstr "Slett vedlegg" -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +#, fuzzy +msgid "Deleting all comments" +msgstr "Slett vedlegg" + +#: templates/metacomments.tmpl:338 #, fuzzy msgid "Deleting comment" msgstr "Slett vedlegg" -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 #, fuzzy msgid "Edit comment" msgstr "Rediger tekst" -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 #, fuzzy msgid "Edit this comment" msgstr "Rediger denne tabellen" -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 +#, fuzzy +msgid "Mark all comments?" +msgstr "Kommentar" + +#: templates/metacomments.tmpl:166 +msgid "Mark as read" +msgstr "" + +#: templates/metacomments.tmpl:387 #, fuzzy -msgid "Marking comment" +msgid "Marking all comments" msgstr "Kommentar" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "OK" -#: templates/metacomments.tmpl:56 +#: templates/metacomments.tmpl:65 #, fuzzy msgid "One comment" msgstr "Kommentar" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 #, fuzzy msgid "Please log in to comment." msgstr "Vennligst kontakt %1." -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 #, fuzzy msgid "RSS comments feed for the %1 web" msgstr "Welkommen til %1 web'en" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -#, fuzzy -msgid "Reply on this comment" -msgstr "Husk meg p denne maskinen" +#: templates/metacomments.tmpl:262 +msgid "Reply" +msgstr "" + +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "Send" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 #, fuzzy msgid "Submitting comment" msgstr "Rediger denne tabellen" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 #, fuzzy msgid "Updating comment" msgstr "Rediger tekst" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 #, fuzzy msgid "Yes, delete" msgstr "(slett)" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +#, fuzzy +msgid "Yes, delete all" +msgstr "(slett)" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 #, fuzzy msgid "permlink" msgstr "Oppdater lenker" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 #, fuzzy msgid "updated" msgstr "Oppdater lenker" + +#, fuzzy +#~ msgid "Reply on this comment" +#~ msgstr "Husk meg p denne maskinen" diff --git a/locale/MetaCommentPlugin/pl.po b/locale/MetaCommentPlugin/pl.po index d598662..a913226 100644 --- a/locale/MetaCommentPlugin/pl.po +++ b/locale/MetaCommentPlugin/pl.po @@ -1,193 +1,277 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 #, fuzzy msgid "%1 comments" msgstr "Komentarze:" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 #, fuzzy msgid "Add a comment" msgstr "Zacznik" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +#, fuzzy +msgid "Approve all comments?" +msgstr "Komentarz" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 +#, fuzzy +msgid "Approving all comments" +msgstr "Komentarz" + +#: templates/metacomments.tmpl:403 #, fuzzy msgid "Approving comment" msgstr "Komentarz" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "Rezygnacja" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 #, fuzzy msgid "Comments" msgstr "Komentarze:" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +#, fuzzy +msgid "Delete all comments?" +msgstr "Usu zacznik" + +#: templates/metacomments.tmpl:337 #, fuzzy msgid "Delete comment?" msgstr "Usu zacznik" -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 #, fuzzy msgid "Delete this comment" msgstr "Usu zacznik" -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +#, fuzzy +msgid "Deleting all comments" +msgstr "Usu zacznik" + +#: templates/metacomments.tmpl:338 #, fuzzy msgid "Deleting comment" msgstr "Usu zacznik" -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 #, fuzzy msgid "Edit comment" msgstr "Edycja tekstu" -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 #, fuzzy msgid "Edit this comment" msgstr "Edytuj t tabel" -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 +#, fuzzy +msgid "Mark all comments?" +msgstr "Komentarz" + +#: templates/metacomments.tmpl:166 +msgid "Mark as read" +msgstr "" + +#: templates/metacomments.tmpl:387 #, fuzzy -msgid "Marking comment" +msgid "Marking all comments" msgstr "Komentarz" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "OK" -#: templates/metacomments.tmpl:56 +#: templates/metacomments.tmpl:65 #, fuzzy msgid "One comment" msgstr "Komentarz" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 #, fuzzy msgid "Please log in to comment." msgstr "Zaloguj jako %1" -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 #, fuzzy msgid "RSS comments feed for the %1 web" msgstr "Witamy w dziale %1" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 #, fuzzy msgid "RSS feed of the comments on this topic" msgstr "Utworzenie zacznika do strony" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -#, fuzzy -msgid "Reply on this comment" -msgstr "Zapamitaj mnie na tym komputerze" +#: templates/metacomments.tmpl:262 +msgid "Reply" +msgstr "" + +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "Przelij" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 #, fuzzy msgid "Submitting comment" msgstr "Edytuj t tabel" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 #, fuzzy msgid "Updating comment" msgstr "Edycja tekstu" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 #, fuzzy msgid "Yes, delete" msgstr "(usu)" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +#, fuzzy +msgid "Yes, delete all" +msgstr "(usu)" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 #, fuzzy msgid "new" msgstr "Nowy" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 #, fuzzy msgid "permlink" msgstr "Uaktualnij linki" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 #, fuzzy msgid "updated" msgstr "Uaktualnij linki" + +#, fuzzy +#~ msgid "Reply on this comment" +#~ msgstr "Zapamitaj mnie na tym komputerze" diff --git a/locale/MetaCommentPlugin/pt-br.po b/locale/MetaCommentPlugin/pt-br.po index ef08c75..f835dff 100644 --- a/locale/MetaCommentPlugin/pt-br.po +++ b/locale/MetaCommentPlugin/pt-br.po @@ -1,191 +1,275 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 #, fuzzy msgid "%1 comments" msgstr "Comentrios:" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 #, fuzzy msgid "Add a comment" msgstr "Anexo" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +#, fuzzy +msgid "Approve all comments?" +msgstr "Comentrio" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 +#, fuzzy +msgid "Approving all comments" +msgstr "Comentrio" + +#: templates/metacomments.tmpl:403 #, fuzzy msgid "Approving comment" msgstr "Comentrio" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "Cancelar" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 #, fuzzy msgid "Comments" msgstr "Comentrios:" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +#, fuzzy +msgid "Delete all comments?" +msgstr "Remover anexo %1" + +#: templates/metacomments.tmpl:337 #, fuzzy msgid "Delete comment?" msgstr "Remover anexo %1" -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 #, fuzzy msgid "Delete this comment" msgstr "Remover anexo %1" -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +#, fuzzy +msgid "Deleting all comments" +msgstr "Remover anexo %1" + +#: templates/metacomments.tmpl:338 #, fuzzy msgid "Deleting comment" msgstr "Remover anexo %1" -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 #, fuzzy msgid "Edit comment" msgstr "Editar texto" -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 #, fuzzy msgid "Edit this comment" msgstr "Editar essa tabela" -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 +#, fuzzy +msgid "Mark all comments?" +msgstr "Comentrio" + +#: templates/metacomments.tmpl:166 +msgid "Mark as read" +msgstr "" + +#: templates/metacomments.tmpl:387 #, fuzzy -msgid "Marking comment" +msgid "Marking all comments" msgstr "Comentrio" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "OK" -#: templates/metacomments.tmpl:56 +#: templates/metacomments.tmpl:65 #, fuzzy msgid "One comment" msgstr "Comentrio" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 #, fuzzy msgid "Please log in to comment." msgstr "Faa log in para continuar." -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 #, fuzzy msgid "RSS comments feed for the %1 web" msgstr "Bem-vindo(a) web %1" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -#, fuzzy -msgid "Reply on this comment" -msgstr "Lembre-me nesse computador" +#: templates/metacomments.tmpl:262 +msgid "Reply" +msgstr "" + +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "Enviar" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 #, fuzzy msgid "Submitting comment" msgstr "Editar essa tabela" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 #, fuzzy msgid "Updating comment" msgstr "Editar texto" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 #, fuzzy msgid "Yes, delete" msgstr "(remover)" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +#, fuzzy +msgid "Yes, delete all" +msgstr "(remover)" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 #, fuzzy msgid "permlink" msgstr "Links atualizados" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 #, fuzzy msgid "updated" msgstr "Links atualizados" + +#, fuzzy +#~ msgid "Reply on this comment" +#~ msgstr "Lembre-me nesse computador" diff --git a/locale/MetaCommentPlugin/pt.po b/locale/MetaCommentPlugin/pt.po index 658321e..249796a 100644 --- a/locale/MetaCommentPlugin/pt.po +++ b/locale/MetaCommentPlugin/pt.po @@ -1,191 +1,275 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 #, fuzzy msgid "%1 comments" msgstr "Comentrios:" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 #, fuzzy msgid "Add a comment" msgstr "Anexo" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +#, fuzzy +msgid "Approve all comments?" +msgstr "Comentrio" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 +#, fuzzy +msgid "Approving all comments" +msgstr "Comentrio" + +#: templates/metacomments.tmpl:403 #, fuzzy msgid "Approving comment" msgstr "Comentrio" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "Cancelar" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 #, fuzzy msgid "Comments" msgstr "Comentrios:" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +#, fuzzy +msgid "Delete all comments?" +msgstr "Remover anexo" + +#: templates/metacomments.tmpl:337 #, fuzzy msgid "Delete comment?" msgstr "Remover anexo" -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 #, fuzzy msgid "Delete this comment" msgstr "Remover anexo" -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +#, fuzzy +msgid "Deleting all comments" +msgstr "Remover anexo" + +#: templates/metacomments.tmpl:338 #, fuzzy msgid "Deleting comment" msgstr "Remover anexo" -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 #, fuzzy msgid "Edit comment" msgstr "Editar texto" -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 #, fuzzy msgid "Edit this comment" msgstr "Editar essa tabela" -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 +#, fuzzy +msgid "Mark all comments?" +msgstr "Comentrio" + +#: templates/metacomments.tmpl:166 +msgid "Mark as read" +msgstr "" + +#: templates/metacomments.tmpl:387 #, fuzzy -msgid "Marking comment" +msgid "Marking all comments" msgstr "Comentrio" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "OK" -#: templates/metacomments.tmpl:56 +#: templates/metacomments.tmpl:65 #, fuzzy msgid "One comment" msgstr "Comentrio" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 #, fuzzy msgid "Please log in to comment." msgstr "Por favor, contate %1." -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 #, fuzzy msgid "RSS comments feed for the %1 web" msgstr "Bem-vindo(a) web %1" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -#, fuzzy -msgid "Reply on this comment" -msgstr "Lembre-me nesse computador" +#: templates/metacomments.tmpl:262 +msgid "Reply" +msgstr "" + +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "Enviar" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 #, fuzzy msgid "Submitting comment" msgstr "Editar essa tabela" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 #, fuzzy msgid "Updating comment" msgstr "Editar texto" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 #, fuzzy msgid "Yes, delete" msgstr "(remover)" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +#, fuzzy +msgid "Yes, delete all" +msgstr "(remover)" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 #, fuzzy msgid "permlink" msgstr "Links atualizados" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 #, fuzzy msgid "updated" msgstr "Links atualizados" + +#, fuzzy +#~ msgid "Reply on this comment" +#~ msgstr "Lembre-me nesse computador" diff --git a/locale/MetaCommentPlugin/ru.po b/locale/MetaCommentPlugin/ru.po index 9dd2664..6c161fe 100644 --- a/locale/MetaCommentPlugin/ru.po +++ b/locale/MetaCommentPlugin/ru.po @@ -1,191 +1,273 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 #, fuzzy msgid "%1 comments" msgstr ":" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 #, fuzzy msgid "Add a comment" msgstr " " -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +#, fuzzy +msgid "Approve all comments?" +msgstr " " + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 #, fuzzy +msgid "Approving all comments" +msgstr " " + +#: templates/metacomments.tmpl:403 msgid "Approving comment" msgstr "" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 #, fuzzy msgid "Comments" msgstr ":" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +#, fuzzy +msgid "Delete all comments?" +msgstr " " + +#: templates/metacomments.tmpl:337 #, fuzzy msgid "Delete comment?" msgstr " " -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 #, fuzzy msgid "Delete this comment" msgstr " " -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +#, fuzzy +msgid "Deleting all comments" +msgstr " " + +#: templates/metacomments.tmpl:338 #, fuzzy msgid "Deleting comment" msgstr " " -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 #, fuzzy msgid "Edit comment" msgstr " " -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 #, fuzzy msgid "Edit this comment" msgstr " " -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 #, fuzzy -msgid "Marking comment" +msgid "Mark all comments?" +msgstr " " + +#: templates/metacomments.tmpl:166 +msgid "Mark as read" msgstr "" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:387 +#, fuzzy +msgid "Marking all comments" +msgstr " " + +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "OK" -#: templates/metacomments.tmpl:56 -#, fuzzy +#: templates/metacomments.tmpl:65 msgid "One comment" msgstr "" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 #, fuzzy msgid "Please log in to comment." msgstr ", %1." -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 #, fuzzy msgid "RSS comments feed for the %1 web" msgstr " %1" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -#, fuzzy -msgid "Reply on this comment" -msgstr " " +#: templates/metacomments.tmpl:262 +msgid "Reply" +msgstr "" + +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 #, fuzzy msgid "Submitting comment" msgstr " " # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 #, fuzzy msgid "Updating comment" msgstr " " -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 #, fuzzy msgid "Yes, delete" msgstr "()" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +#, fuzzy +msgid "Yes, delete all" +msgstr "()" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 #, fuzzy msgid "permlink" msgstr " " -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 #, fuzzy msgid "updated" msgstr " " + +#, fuzzy +#~ msgid "Reply on this comment" +#~ msgstr " " diff --git a/locale/MetaCommentPlugin/sv.po b/locale/MetaCommentPlugin/sv.po index 2e979d1..b31aadf 100644 --- a/locale/MetaCommentPlugin/sv.po +++ b/locale/MetaCommentPlugin/sv.po @@ -1,191 +1,275 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 #, fuzzy msgid "%1 comments" msgstr "Kommentarer:" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 #, fuzzy msgid "Add a comment" msgstr "Bifogad fil" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +#, fuzzy +msgid "Approve all comments?" +msgstr "Kommentar" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 +#, fuzzy +msgid "Approving all comments" +msgstr "Kommentar" + +#: templates/metacomments.tmpl:403 #, fuzzy msgid "Approving comment" msgstr "Kommentar" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "Avbryt" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 #, fuzzy msgid "Comments" msgstr "Kommentarer:" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +#, fuzzy +msgid "Delete all comments?" +msgstr "Radera bifogad fil" + +#: templates/metacomments.tmpl:337 #, fuzzy msgid "Delete comment?" msgstr "Radera bifogad fil" -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 #, fuzzy msgid "Delete this comment" msgstr "Radera bifogad fil" -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +#, fuzzy +msgid "Deleting all comments" +msgstr "Radera bifogad fil" + +#: templates/metacomments.tmpl:338 #, fuzzy msgid "Deleting comment" msgstr "Radera bifogad fil" -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 #, fuzzy msgid "Edit comment" msgstr "Redigera text" -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 #, fuzzy msgid "Edit this comment" msgstr "Redigera denna tabell" -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 +#, fuzzy +msgid "Mark all comments?" +msgstr "Kommentar" + +#: templates/metacomments.tmpl:166 +msgid "Mark as read" +msgstr "" + +#: templates/metacomments.tmpl:387 #, fuzzy -msgid "Marking comment" +msgid "Marking all comments" msgstr "Kommentar" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "OK" -#: templates/metacomments.tmpl:56 +#: templates/metacomments.tmpl:65 #, fuzzy msgid "One comment" msgstr "Kommentar" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 #, fuzzy msgid "Please log in to comment." msgstr "Kontakta %1." -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 #, fuzzy msgid "RSS comments feed for the %1 web" msgstr "Vlkommen till avdelning %1" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -#, fuzzy -msgid "Reply on this comment" -msgstr "Kom ihg mig p denna dator" +#: templates/metacomments.tmpl:262 +msgid "Reply" +msgstr "" + +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "Skicka" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 #, fuzzy msgid "Submitting comment" msgstr "Redigera denna tabell" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 #, fuzzy msgid "Updating comment" msgstr "Redigera text" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 #, fuzzy msgid "Yes, delete" msgstr "(ta bort)" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +#, fuzzy +msgid "Yes, delete all" +msgstr "(ta bort)" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 #, fuzzy msgid "permlink" msgstr "Uppdatera referenser" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 #, fuzzy msgid "updated" msgstr "Uppdatera referenser" + +#, fuzzy +#~ msgid "Reply on this comment" +#~ msgstr "Kom ihg mig p denna dator" diff --git a/locale/MetaCommentPlugin/tlh.po b/locale/MetaCommentPlugin/tlh.po index 739b7e7..254d7bb 100644 --- a/locale/MetaCommentPlugin/tlh.po +++ b/locale/MetaCommentPlugin/tlh.po @@ -1,191 +1,275 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 #, fuzzy msgid "%1 comments" msgstr "ghItlhHom" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 #, fuzzy msgid "Add a comment" msgstr "tep" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +#, fuzzy +msgid "Approve all comments?" +msgstr "ghItlhHom" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 +#, fuzzy +msgid "Approving all comments" +msgstr "ghItlhHom" + +#: templates/metacomments.tmpl:403 #, fuzzy msgid "Approving comment" msgstr "ghItlhHom" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "qIl" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 #, fuzzy msgid "Comments" msgstr "ghItlhHom" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +#, fuzzy +msgid "Delete all comments?" +msgstr "tep %1 polHa&'" + +#: templates/metacomments.tmpl:337 #, fuzzy msgid "Delete comment?" msgstr "tep %1 polHa&'" -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 #, fuzzy msgid "Delete this comment" msgstr "tep %1 polHa&'" -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +#, fuzzy +msgid "Deleting all comments" +msgstr "tep %1 polHa&'" + +#: templates/metacomments.tmpl:338 #, fuzzy msgid "Deleting comment" msgstr "tep %1 polHa&'" -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 #, fuzzy msgid "Edit comment" msgstr "ghItlhHom" -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 #, fuzzy msgid "Edit this comment" msgstr "ghItlhvam choH" -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 +#, fuzzy +msgid "Mark all comments?" +msgstr "ghItlhHom" + +#: templates/metacomments.tmpl:166 +msgid "Mark as read" +msgstr "" + +#: templates/metacomments.tmpl:387 #, fuzzy -msgid "Marking comment" +msgid "Marking all comments" msgstr "ghItlhHom" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "luq" -#: templates/metacomments.tmpl:56 +#: templates/metacomments.tmpl:65 #, fuzzy msgid "One comment" msgstr "ghItlhHom" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 #, fuzzy msgid "Please log in to comment." msgstr "bIruchmeH yI&'el." -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 #, fuzzy msgid "RSS comments feed for the %1 web" msgstr "%1 mIchDaq nuqneH" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -#, fuzzy -msgid "Reply on this comment" -msgstr "De&'wI&'vamDaq HIqaw" +#: templates/metacomments.tmpl:262 +msgid "Reply" +msgstr "" + +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "ngeH" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 #, fuzzy msgid "Submitting comment" msgstr "ghItlhvam choH" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 #, fuzzy msgid "Updating comment" msgstr "ghItlhHom" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 #, fuzzy msgid "Yes, delete" msgstr "(polHa&')" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +#, fuzzy +msgid "Yes, delete all" +msgstr "(polHa&')" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "chu&'" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 #, fuzzy msgid "permlink" msgstr "rarwI&'mey chu&'moH" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 #, fuzzy msgid "updated" msgstr "chu&'moH" + +#, fuzzy +#~ msgid "Reply on this comment" +#~ msgstr "De&'wI&'vamDaq HIqaw" diff --git a/locale/MetaCommentPlugin/tr.po b/locale/MetaCommentPlugin/tr.po index cb3948c..19b87c1 100644 --- a/locale/MetaCommentPlugin/tr.po +++ b/locale/MetaCommentPlugin/tr.po @@ -1,188 +1,269 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 #, fuzzy msgid "%1 comments" msgstr "Yorum" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 #, fuzzy msgid "Add a comment" msgstr "Yorum" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +#, fuzzy +msgid "Approve all comments?" +msgstr "Yorum" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 +#, fuzzy +msgid "Approving all comments" +msgstr "Yorum" + +#: templates/metacomments.tmpl:403 #, fuzzy msgid "Approving comment" msgstr "Yorum" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "ptal" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 #, fuzzy msgid "Comments" msgstr "Yorum" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +#, fuzzy +msgid "Delete all comments?" +msgstr "Eklentiyi sil" + +#: templates/metacomments.tmpl:337 #, fuzzy msgid "Delete comment?" msgstr "Eklentiyi sil" -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 #, fuzzy msgid "Delete this comment" msgstr "Eklentiyi sil" -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +#, fuzzy +msgid "Deleting all comments" +msgstr "Eklentiyi sil" + +#: templates/metacomments.tmpl:338 #, fuzzy msgid "Deleting comment" msgstr "Eklentiyi sil" -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 #, fuzzy msgid "Edit comment" msgstr "Metni dzenle" -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 #, fuzzy msgid "Edit this comment" msgstr "Tablo Dzenle" -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 +#, fuzzy +msgid "Mark all comments?" +msgstr "Yorum" + +#: templates/metacomments.tmpl:166 +msgid "Mark as read" +msgstr "" + +#: templates/metacomments.tmpl:387 #, fuzzy -msgid "Marking comment" +msgid "Marking all comments" msgstr "Yorum" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "TAMAM" -#: templates/metacomments.tmpl:56 +#: templates/metacomments.tmpl:65 #, fuzzy msgid "One comment" msgstr "Yorum" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 #, fuzzy msgid "Please log in to comment." msgstr "%1 ile iletiime geiniz." -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 #, fuzzy msgid "RSS comments feed for the %1 web" msgstr "%1 Web'e Hogeldiniz" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -msgid "Reply on this comment" +#: templates/metacomments.tmpl:262 +msgid "Reply" msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" + +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 #, fuzzy msgid "Submitting comment" msgstr "Tablo Dzenle" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 #, fuzzy msgid "Updating comment" msgstr "Metni dzenle" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 #, fuzzy msgid "Yes, delete" msgstr "(sil)" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +#, fuzzy +msgid "Yes, delete all" +msgstr "(sil)" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 msgid "permlink" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 msgid "updated" msgstr "" diff --git a/locale/MetaCommentPlugin/uk.po b/locale/MetaCommentPlugin/uk.po index 23f4335..6827314 100644 --- a/locale/MetaCommentPlugin/uk.po +++ b/locale/MetaCommentPlugin/uk.po @@ -20,194 +20,278 @@ msgstr "" "X-Poedit-Country: UKRAINE\n" "X-Poedit-SourceCharset: utf-8\n" -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 #, fuzzy msgid "%1 comments" msgstr "Коментарі:" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 #, fuzzy msgid "Add a comment" msgstr "Прикріплений файл" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +#, fuzzy +msgid "Approve all comments?" +msgstr "Коментар" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 +#, fuzzy +msgid "Approving all comments" +msgstr "Коментар" + +#: templates/metacomments.tmpl:403 #, fuzzy msgid "Approving comment" msgstr "Коментар" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "Відміна" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 #, fuzzy msgid "Comments" msgstr "Коментарі:" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +#, fuzzy +msgid "Delete all comments?" +msgstr "Вилучити файл" + +#: templates/metacomments.tmpl:337 #, fuzzy msgid "Delete comment?" msgstr "Вилучити файл" -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 #, fuzzy msgid "Delete this comment" msgstr "Вилучити файл" -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +#, fuzzy +msgid "Deleting all comments" +msgstr "Вилучити файл" + +#: templates/metacomments.tmpl:338 #, fuzzy msgid "Deleting comment" msgstr "Вилучити файл" -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 #, fuzzy msgid "Edit comment" msgstr "Редагувати текст" -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 #, fuzzy msgid "Edit this comment" msgstr "Редагувати цю таблицю" -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 +#, fuzzy +msgid "Mark all comments?" +msgstr "Коментар" + +#: templates/metacomments.tmpl:166 +msgid "Mark as read" +msgstr "" + +#: templates/metacomments.tmpl:387 #, fuzzy -msgid "Marking comment" +msgid "Marking all comments" msgstr "Коментар" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "Гаразд" -#: templates/metacomments.tmpl:56 +#: templates/metacomments.tmpl:65 #, fuzzy msgid "One comment" msgstr "Коментар" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 #, fuzzy msgid "Please log in to comment." msgstr "Будь ласка, зв'яжіться з %1." -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 #, fuzzy msgid "RSS comments feed for the %1 web" msgstr "Ласкаво просимо у розділ %1" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -#, fuzzy -msgid "Reply on this comment" -msgstr "Пам'ятати мене на цьому комп'ютері" +#: templates/metacomments.tmpl:262 +msgid "Reply" +msgstr "" + +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "Застосувати" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 #, fuzzy msgid "Submitting comment" msgstr "Редагувати цю таблицю" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 #, fuzzy msgid "Updating comment" msgstr "Редагувати текст" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 #, fuzzy msgid "Yes, delete" msgstr "(вилучити)" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +#, fuzzy +msgid "Yes, delete all" +msgstr "(вилучити)" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 #, fuzzy msgid "permlink" msgstr "Оновити посилання" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 #, fuzzy msgid "updated" msgstr "Оновити посилання" + +#, fuzzy +#~ msgid "Reply on this comment" +#~ msgstr "Пам'ятати мене на цьому комп'ютері" diff --git a/locale/MetaCommentPlugin/zh-cn.po b/locale/MetaCommentPlugin/zh-cn.po index e2bf0ae..fe7f9c3 100644 --- a/locale/MetaCommentPlugin/zh-cn.po +++ b/locale/MetaCommentPlugin/zh-cn.po @@ -1,175 +1,256 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 msgid "%1 comments" msgstr "%1" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 msgid "Add a comment" msgstr "" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +msgid "Approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 +#: templates/metacomments.tmpl:372 +#, fuzzy +msgid "Approving all comments" +msgstr "%1" + +#: templates/metacomments.tmpl:403 msgid "Approving comment" msgstr "" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +#, fuzzy +msgid "Are you sure that you want to approve all comments?" +msgstr "2%3%1%?" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "2%3%1%?" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +#, fuzzy +msgid "Are you sure that you want to delete all comments ?" +msgstr "2%3%1%?" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "2%3%1%?" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +#, fuzzy +msgid "Are you sure that you want to mark all comments as read?" +msgstr "2%3%1%?" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 msgid "Comments" msgstr "" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +msgid "Delete all comments?" +msgstr "" + +#: templates/metacomments.tmpl:337 msgid "Delete comment?" msgstr "" -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 msgid "Delete this comment" msgstr "" -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 +#, fuzzy +msgid "Deleting all comments" +msgstr "%1" + +#: templates/metacomments.tmpl:338 msgid "Deleting comment" msgstr "" -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:421 msgid "Edit comment" msgstr "" -#: templates/metacomments.tmpl:187 +#: templates/metacomments.tmpl:253 msgid "Edit this comment" msgstr "" -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 +#, fuzzy +msgid "Mark all comments?" +msgstr "%1" + +#: templates/metacomments.tmpl:166 +msgid "Mark as read" +msgstr "" + +#: templates/metacomments.tmpl:387 #, fuzzy -msgid "Marking comment" +msgid "Marking all comments" msgstr "%1" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "OK" -#: templates/metacomments.tmpl:56 +#: templates/metacomments.tmpl:65 msgid "One comment" msgstr "" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 #, fuzzy msgid "Please log in or register to comment." msgstr " [[%1][]] [[%2][]]" -#: templates/metacomments.tmpl:71 +#: templates/metacomments.tmpl:89 #, fuzzy msgid "Please log in to comment." msgstr " [[%1][]" -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 msgid "RSS comments feed for the %1 web" msgstr "RSS %1" -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "RSS" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" +msgstr "" + +#: templates/metacomments.tmpl:262 +msgid "Reply" msgstr "" -#: templates/metacomments.tmpl:184 -msgid "Reply on this comment" +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "" -#: templates/metacomments.tmpl:7 +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 msgid "Submitting comment" msgstr "" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 msgid "Updating comment" msgstr "" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 msgid "Yes, delete" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +msgid "Yes, delete all" +msgstr "" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 +#: templates/metacomments.tmpl:225 msgid "permlink" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:217 msgid "updated" msgstr "" diff --git a/locale/MetaCommentPlugin/zh-tw.po b/locale/MetaCommentPlugin/zh-tw.po index e71eae5..56393c0 100644 --- a/locale/MetaCommentPlugin/zh-tw.po +++ b/locale/MetaCommentPlugin/zh-tw.po @@ -1,191 +1,260 @@ -#: templates/metacomments.tmpl:57 +#: templates/metacomments.tmpl:66 #, fuzzy msgid "%1 comments" msgstr ":" -#: templates/metacomments.tmpl:105 templates/metacomments.tmpl:445 -#, fuzzy +#: templates/metacomments.tmpl:120 templates/metacomments.tmpl:514 msgid "Add a comment" msgstr "" -#: templates/metacomments.tmpl:320 +#: templates/metacomments.tmpl:167 +msgid "Approve all" +msgstr "" + +#: templates/metacomments.tmpl:371 +#, fuzzy +msgid "Approve all comments?" +msgstr " %1" + +#: templates/metacomments.tmpl:402 msgid "Approve comment?" msgstr "" -#: templates/metacomments.tmpl:190 +#: templates/metacomments.tmpl:255 msgid "Approve this comment" msgstr "" -#: templates/metacomments.tmpl:10 -#, fuzzy +#: templates/metacomments.tmpl:372 +msgid "Approving all comments" +msgstr "" + +#: templates/metacomments.tmpl:403 msgid "Approving comment" msgstr "" -#: templates/metacomments.tmpl:327 +#: templates/metacomments.tmpl:376 +msgid "Are you sure that you want to approve all comments?" +msgstr "" + +#: templates/metacomments.tmpl:409 msgid "Are you sure that you want to approve comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:306 +#: templates/metacomments.tmpl:361 +msgid "Are you sure that you want to delete all comments ?" +msgstr "" + +#: templates/metacomments.tmpl:344 msgid "Are you sure that you want to delete comment %1 posted by %2 on %3?" msgstr "" -#: templates/metacomments.tmpl:355 templates/metacomments.tmpl:377 -#: templates/metacomments.tmpl:491 +#: templates/metacomments.tmpl:391 +msgid "Are you sure that you want to mark all comments as read?" +msgstr "" + +#: templates/metacomments.tmpl:30 +msgid "Bold" +msgstr "" + +#: templates/metacomments.tmpl:435 templates/metacomments.tmpl:451 +#: templates/metacomments.tmpl:550 msgid "Cancel" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:163 -#: templates/metacomments.tmpl:228 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:276 templates/metacomments.tmpl:279 +#: templates/metacomments.tmpl:215 templates/metacomments.tmpl:217 msgid "Click to mark as read" msgstr "" +#: templates/metacomments.tmpl:266 +msgid "Comment on this thread" +msgstr "" + #: templates/metacommentsrss.tmpl:7 #, fuzzy msgid "Comments" msgstr ":" -#: templates/metacomments.tmpl:299 +#: templates/metacomments.tmpl:168 +msgid "Delete all" +msgstr "" + +#: templates/metacomments.tmpl:356 +#, fuzzy +msgid "Delete all comments?" +msgstr " %1" + +#: templates/metacomments.tmpl:337 #, fuzzy msgid "Delete comment?" msgstr " %1" -#: templates/metacomments.tmpl:193 +#: templates/metacomments.tmpl:257 #, fuzzy msgid "Delete this comment" msgstr " %1" -#: templates/metacomments.tmpl:9 +#: templates/metacomments.tmpl:357 #, fuzzy -msgid "Deleting comment" +msgid "Deleting all comments" msgstr " %1" -#: templates/metacomments.tmpl:341 +#: templates/metacomments.tmpl:338 #, fuzzy +msgid "Deleting comment" +msgstr " %1" + +#: templates/metacomments.tmpl:421 msgid "Edit comment" msgstr "" -#: templates/metacomments.tmpl:187 -#, fuzzy +#: templates/metacomments.tmpl:253 msgid "Edit this comment" msgstr "" -#: templates/metacomments.tmpl:11 +#: templates/metacomments.tmpl:31 +msgid "Italic" +msgstr "" + +#: templates/metacomments.tmpl:386 #, fuzzy -msgid "Marking comment" +msgid "Mark all comments?" +msgstr ":" + +#: templates/metacomments.tmpl:166 +msgid "Mark as read" msgstr "" -#: templates/metacomments.tmpl:463 +#: templates/metacomments.tmpl:387 +#, fuzzy +msgid "Marking all comments" +msgstr " %1" + +#: templates/metacomments.tmpl:33 +msgid "More character formats" +msgstr "" + +#: templates/metacomments.tmpl:530 msgid "Name" msgstr "" -#: templates/metacomments.tmpl:311 templates/metacomments.tmpl:332 +#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:364 +#: templates/metacomments.tmpl:379 templates/metacomments.tmpl:394 +#: templates/metacomments.tmpl:414 msgid "No, thanks" msgstr "" -#: templates/metacomments.tmpl:354 templates/metacomments.tmpl:376 +#: templates/metacomments.tmpl:434 templates/metacomments.tmpl:450 msgid "OK" msgstr "OK" -#: templates/metacomments.tmpl:56 -#, fuzzy +#: templates/metacomments.tmpl:65 msgid "One comment" msgstr "" -#: templates/metacomments.tmpl:70 +#: templates/metacomments.tmpl:88 msgid "Please log in or register to comment." msgstr "" -#: templates/metacomments.tmpl:71 -#, fuzzy +#: templates/metacomments.tmpl:89 msgid "Please log in to comment." msgstr "" -#: data/System/MetaCommentPlugin.txt:256 +#: data/System/MetaCommentPlugin.txt:258 #, fuzzy msgid "RSS comments feed for the %1 web" msgstr " %1 " -#: templates/metacomments.tmpl:55 +#: templates/metacomments.tmpl:79 msgid "RSS feed of the comments on this topic" msgstr "" -#: templates/metacomments.tmpl:364 -msgid "Reply on comment" +#: templates/metacomments.tmpl:34 +msgid "Remove Format" msgstr "" -#: templates/metacomments.tmpl:184 -#, fuzzy -msgid "Reply on this comment" +#: templates/metacomments.tmpl:262 +msgid "Reply" msgstr "" -#: templates/metacomments.tmpl:68 +#: templates/metacomments.tmpl:442 +msgid "Reply on comment" +msgstr "" + +#: templates/metacomments.tmpl:86 msgid "Sorry, commenting not allowed." msgstr "" -#: templates/metacomments.tmpl:490 +#: templates/metacomments.tmpl:549 msgid "Submit" msgstr "" -#: templates/metacomments.tmpl:7 -#, fuzzy +#: templates/metacomments.tmpl:443 templates/metacomments.tmpl:518 msgid "Submitting comment" msgstr "" # somewhere -#: templates/metacomments.tmpl:349 templates/metacomments.tmpl:371 -#: templates/metacomments.tmpl:476 +#: templates/metacomments.tmpl:429 templates/metacomments.tmpl:539 msgid "Title" msgstr "Titel" -#: templates/metacomments.tmpl:8 -#, fuzzy +#: templates/metacomments.tmpl:32 +msgid "Underline" +msgstr "" + +#: templates/metacomments.tmpl:422 msgid "Updating comment" msgstr "" -#: templates/metacomments.tmpl:331 +#: templates/metacomments.tmpl:413 msgid "Yes, approve" msgstr "" -#: templates/metacomments.tmpl:310 +#: templates/metacomments.tmpl:378 +msgid "Yes, approve all" +msgstr "" + +#: templates/metacomments.tmpl:348 #, fuzzy msgid "Yes, delete" msgstr "()" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:363 +#, fuzzy +msgid "Yes, delete all" +msgstr "()" + +#: templates/metacomments.tmpl:393 +msgid "Yes, mark all" +msgstr "" + +#: templates/metacomments.tmpl:135 msgid "inside tab" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "linear" msgstr "" -#: templates/metacomments.tmpl:153 templates/metacomments.tmpl:221 -#: templates/metacomments.tmpl:269 +#: templates/metacomments.tmpl:244 msgid "needs approval" msgstr "" -#: templates/metacomments.tmpl:160 templates/metacomments.tmpl:228 -#: templates/metacomments.tmpl:276 +#: templates/metacomments.tmpl:215 msgid "new" msgstr "" -#: templates/metacomments.tmpl:169 templates/metacomments.tmpl:237 -#: templates/metacomments.tmpl:285 -#, fuzzy +#: templates/metacomments.tmpl:225 msgid "permlink" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "reverse" msgstr "" -#: templates/metacomments.tmpl:121 +#: templates/metacomments.tmpl:135 msgid "threaded" msgstr "" -#: templates/metacomments.tmpl:163 templates/metacomments.tmpl:231 -#: templates/metacomments.tmpl:279 -#, fuzzy +#: templates/metacomments.tmpl:217 msgid "updated" msgstr "" diff --git a/pub/System/MetaCommentPlugin/Makefile b/pub/System/MetaCommentPlugin/Makefile index 43a2113..fb0a16e 100644 --- a/pub/System/MetaCommentPlugin/Makefile +++ b/pub/System/MetaCommentPlugin/Makefile @@ -1,4 +1,8 @@ FOSWIKI_ROOT?=~/foswiki/trunk/core -TARGET=metacomment.css metacomment.js metacomment.pattern.css +TARGET=\ + metacomment.css \ + metacomment.js \ + naviblocker.js \ + metacomment.pattern.css -include $(FOSWIKI_ROOT)/pub/System/JQueryPlugin/Makefile.include diff --git a/pub/System/MetaCommentPlugin/metacomment.uncompressed.css b/pub/System/MetaCommentPlugin/metacomment.uncompressed.css index 4f94e63..7380a50 100644 --- a/pub/System/MetaCommentPlugin/metacomment.uncompressed.css +++ b/pub/System/MetaCommentPlugin/metacomment.uncompressed.css @@ -17,8 +17,8 @@ } .cmtDeleteAll:hover, .cmtRssFeed:hover { - background-color:#eee; - color:inherit; + background-color: var(--color-hover-background, #eee); + color: var(--color-hover-foreground, #222); text-decoration:none; } @@ -68,7 +68,9 @@ h3.cmtCommentNr { float:right; color:#444; - margin:0em 0em 1em 1em; + margin:-0.5em 0em 1em 1em; + transition: opacity 500ms; + opacity:1; } .ui-dialog .cmtDate, .ui-dialog .cmtAuthor, @@ -77,29 +79,30 @@ h3.cmtCommentNr { white-space:nowrap; } .cmtControls { - padding:0em 1.3846em 1.3076em; - margin:0em -1.3846em -1.3076em; + position:absolute; + top:0; + right:0; + opacity:0; + transition: opacity 500ms; +} +.cmtControls a { + margin-left:1em; } .cmtComment { position:relative; + padding-top:0.5em; +} +.cmtComment:hover .cmtControls { + opacity:1; +} +.cmtComment:hover .cmtCommentNr { + opacity:0; } a.cmtMark, a.cmtPermLink, .cmtAuthor a { text-decoration:none; } -.cmtControls { - position:absolute; - bottom:1px; - right:1px; - display:none; -} -.cmtControls a { - margin-left:0.6923em; -} -.cmtHover .cmtAlert { - visibility:hidden; -} .cmtState_closed .cmtControls { display:none; } @@ -117,7 +120,7 @@ a.cmtPermLink, .cmtComment .imagePlain_left, .cmtComment .imageSimple_left { - margin:0em 0.6923em 0.3077em 0em; /* 0px 9px 4px 0px */ + margin:-0.5em 0.6923em 0.3077em 0em; } .cmtStyle_insidetab h2.cmtCounter, .cmtStyle_insidetab .cmtAddComment h2 { diff --git a/pub/System/MetaCommentPlugin/metacomment.uncompressed.js b/pub/System/MetaCommentPlugin/metacomment.uncompressed.js index cc3c0d5..59b25f2 100644 --- a/pub/System/MetaCommentPlugin/metacomment.uncompressed.js +++ b/pub/System/MetaCommentPlugin/metacomment.uncompressed.js @@ -2,7 +2,7 @@ Foswiki - The Free and Open Source Wiki, http://foswiki.org/ -(c)opyright 2010-2019 Michael Daum http://michaeldaumconsulting.com +(c)opyright 2010-2022 Michael Daum http://michaeldaumconsulting.com are listed in the AUTHORS file in the root of this distribution. NOTE: Please extend that file, not this notice. @@ -20,161 +20,102 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. As per the GPL, removal of this notice is prohibited. */ + +/*global foswikiStrikeOne:false */ + "use strict"; -jQuery(function($) { - var doneLoadDialogs = false; - - $(".cmtComments:not(.cmtCommentsInited)").livequery(function() { - var $this = $(this), - $container = $this.parent(), - defaults = { - topic: foswiki.getPreference("TOPIC"), - web: foswiki.getPreference("WEB"), - updateMessage: "Updating comment", - deleteMessage: "Deleting comment", - approveMessage: "Approving comment", - markingMessage: "Marking comment" - }, - opts = $.extend({}, defaults, $this.data(), $this.metadata()), - hash; - - /* function to reload all dialogs **************************************/ - function loadDialogs(callback) { - if (!doneLoadDialogs) { - doneLoadDialogs = true; - $.get( - foswiki.getPreference("SCRIPTURL") + "/rest/RenderPlugin/template", - { - name:'metacomments', - render:'on', - topic:opts.web+"."+opts.topic, - expand:'comments::dialogs' - }, function(data) { - $('body').append(data); - window.setTimeout(callback, 100); // wait for livequeries ... - } - ); - } else { - $(".cmtDialog form").resetForm(); - callback.call(); - } - } +(function($) { - /* function to reload all comments *************************************/ - function loadComments() { - var url = foswiki.getPreference("SCRIPTURL") + - "/rest/RenderPlugin/template" + - "?name=metacomments" + - ";render=on" + - ";topic="+opts.web+"."+opts.topic + - ";expand=metacomments"; + //globals + var doneLoadDialogs = false, + globalMetaComments; - $container.load(url, function() { - $.unblockUI(); - $container.height('auto'); - }); - } + // constructor + function MetaComments(elem, opts) { + var self = this, + baseTopic = foswiki.getPreference("WEB")+"."+foswiki.getPreference("TOPIC"); - /* add hover ***********************************************************/ - $this.find(".cmtComment").hover( - function() { - var $this = $(this), $controls = $this.children(".cmtControls"); - $this.addClass("cmtHover"); - $controls.stop(true, true).fadeIn(500); - }, - function() { - var $this = $(this), $controls = $this.children(".cmtControls"); - $controls.stop(true, true).hide(); - $this.removeClass("cmtHover"); - } - ); + globalMetaComments = self; - /* ajaxify forms ********************************************************/ - $(".cmtJsonRpcForm").livequery(function() { - var $form = $(this), msg = $form.data("message"); + self.elem = $(elem); - $form.ajaxForm({ - beforeSerialize: function() { - if (typeof(foswikiStrikeOne) !== 'undefined') { - foswikiStrikeOne($form[0]); - } - }, - beforeSubmit: function() { - if ($form.is(".cmtModalForm")) { - $form.parent().dialog("close"); - } - $.blockUI({ - message:"

"+msg+" ...

", - fadeIn: 0, - fadeOut: 0 - }); - }, - success: function(data) { - if(data.error) { - $.unblockUI(); - $.pnotify({ - text: "Error: "+data.error.message, - type:"error" - }); - } else { - loadComments(); - } - }, - error: function(xhr) { - var data = $.parseJSON(xhr.responseText); - $.unblockUI(); - $.pnotify({ - text: "Error: "+data.error.message, - type:"error" - }); - } + // gather options by merging opts + self.opts = $.extend({ + baseTopic: baseTopic, + topic: baseTopic + }, self.elem.data(), opts); + + self.init(); + } + + // initializer ********************************************************* + MetaComments.prototype.init = function () { + var self = this, + hash = window.location.hash; + + self.container = self.elem.parent(); + + // scroll to comments hash + if (hash.match(/^#comment\d+\.\d+$/)) { + $.scrollTo(hash.replace(/\./, "\\."), 500, { + easing: "easeInOutQuad" }); - }); + } - /* add reply behaviour **************************************************/ - $this.find(".cmtReply").click(function() { - var $comment = $(this).parents(".cmtComment:first"), - commentOpts = $.extend({}, $comment.metadata()); + // add reply behaviour + self.elem.find(".cmtReply").on("click", function() { + var $comment = $(this).parent().find(".cmtComment:first"), + commentOpts = $.extend({}, $comment.data()); - loadDialogs(function() { + self.loadDialogs().then(function() { $("#cmtReplyComment").dialog("option", "open", function() { var $this = $(this); + $this.find("input[name='topic']").val(self.opts.topic); $this.find(".cmtCommentIndex").text(commentOpts.index); - $this.find("input[name='ref']").val(commentOpts.comment_id); + $this.find("input[name='ref']").val(commentOpts.commentId); + $this.find("form").trigger("refresh"); }).dialog("open"); }); return false; }); - /* add edit behaviour ***************************************************/ - $this.find(".cmtEdit").click(function() { + // add edit behaviour + self.elem.find(".cmtEdit").on("click", function() { var $comment = $(this).parents(".cmtComment:first"), - commentOpts = $.extend({}, $comment.metadata()); + commentOpts = $.extend({}, $comment.data()); - loadDialogs(function() { + self.loadDialogs().then(function() { $.jsonRpc(foswiki.getPreference("SCRIPTURL")+"/jsonrpc", { namespace: "MetaCommentPlugin", method: "getComment", params: { - "topic": opts.web+"."+opts.topic, - "comment_id": commentOpts.comment_id + "topic": self.opts.topic, + "comment_id": commentOpts.commentId }, success: function(json) { $.unblockUI(); $("#cmtUpdateComment").dialog("option", "open", function() { var $this = $(this); - $this.find("input[name='comment_id']").val(commentOpts.comment_id); + $this.find("input[name='topic']").val(self.opts.topic); + $this.find("input[name='comment_id']").val(commentOpts.commentId); $this.find("input[name='index']").val(commentOpts.index); $this.find(".cmtCommentIndex").text(commentOpts.index); $this.find("input[name='title']").val(json.result.title); $this.find("textarea[name='text']").val(json.result.text); + $this.find("form").trigger("refresh"); + if ((""+commentOpts.index).match(/^\d+$/)) { + $this.find(".cmtTitleStep").show(); + } else { + $this.find(".cmtTitleStep").hide(); + } }).dialog("open"); }, error: function(data) { $.unblockUI(); $.pnotify({ - text: "Error: "+data.error.message, + title: "Error", + text: data.error.message, type:"error" }); } @@ -183,15 +124,16 @@ jQuery(function($) { return false; }); - /* add delete behaviour *************************************************/ - $this.find(".cmtDelete").click(function() { + // add delete behaviour + self.elem.find(".cmtDelete").on("click", function() { var $comment = $(this).parents(".cmtComment:first"), - commentOpts = $.extend({}, $comment.metadata()); + commentOpts = $.extend({}, $comment.data()); - loadDialogs(function() { + self.loadDialogs().then(function() { $("#cmtConfirmDelete").dialog("option", "open", function() { var $this = $(this); - $this.find("input[name='comment_id']").val(commentOpts.comment_id); + $this.find("input[name='topic']").val(self.opts.topic); + $this.find("input[name='comment_id']").val(commentOpts.commentId); $this.find("input[name='index']").val(commentOpts.index); $this.find(".cmtCommentNr").text(commentOpts.index); $this.find(".cmtAuthor").text(commentOpts.author); @@ -202,30 +144,33 @@ jQuery(function($) { return false; }); - /* add delete/approve/mark all behaviour ******************************************/ - $this.find(".cmtDeleteAll, .cmtApproveAll, .cmtMarkAll").click(function() { + // add delete/approve/mark all behaviour + self.elem.find(".cmtDeleteAll, .cmtApproveAll, .cmtMarkAll").on("click", function() { var id = $(this).attr("href"); - loadDialogs(function() { - $(id).dialog("open"); + self.loadDialogs().then(function() { + $(id).dialog("option", "open", function() { + var $this = $(this); + $this.find("input[name='topic']").val(self.opts.topic); + }).dialog("open"); }); return false; }); - /* add "mark as read" behaviour *************************************************/ - $this.find(".cmtMark").click(function() { + // add "mark as read" + self.elem.find(".cmtMark").on("click", function() { var $this = $(this), msg = $this.data("message"), $comment = $this.parents(".cmtComment:first"), - commentOpts = $.extend({}, $comment.metadata()); + commentOpts = $.extend({}, $comment.data()); $.jsonRpc(foswiki.getPreference("SCRIPTURL")+"/jsonrpc", { namespace: "MetaCommentPlugin", method: "markComment", params: { - "topic": opts.web+"."+opts.topic, - "comment_id": commentOpts.comment_id + "topic": self.opts.topic, + "comment_id": commentOpts.commentId }, beforeSubmit: function() { $.blockUI({ message:"

"+msg+" ...

"}); @@ -238,11 +183,13 @@ jQuery(function($) { $this.remove(); } $comment.parent().removeClass("cmtCommentNew cmtCommentUpdated"); + self.updateFavicon(); }, error: function(data) { $.unblockUI(); $.pnotify({ - text: "Error: "+data.error.message, + title: "Error", + text: data.error.message, type:"error" }); } @@ -251,35 +198,173 @@ jQuery(function($) { return false; }); - /* add approve behaviour ************************************************/ - $this.find(".cmtApprove").click(function() { + // add approve behaviour + self.elem.find(".cmtApprove").on("click", function() { var $comment = $(this).parents(".cmtComment:first"), - commentOpts = $.extend({}, $comment.metadata()); + commentOpts = $.extend({}, $comment.data()); - loadDialogs(function() { + self.loadDialogs().then(function() { $("#cmtConfirmApprove").dialog("option", "open", function() { var $this = $(this); - $this.find("input[name='comment_id']").val(commentOpts.comment_id); + $this.find("input[name='topic']").val(self.opts.topic); + $this.find("input[name='comment_id']").val(commentOpts.commentId); $this.find("input[name='index']").val(commentOpts.index); $this.find(".cmtCommentNr").text(commentOpts.index); $this.find(".cmtAuthor").text(commentOpts.author); $this.find(".cmtDate").text(commentOpts.date); }).dialog("open"); }); + return false; }); - // scroll to comments hash - hash = window.location.hash; - if (hash.match(/^#comment\d+\.\d+$/)) { - $.scrollTo(hash.replace(/\./, "\\."), 500, { - easing: "easeInOutQuad" - }); - } - // work around blinking twisties window.setTimeout(function() { - $this.find(".twistyPlugin").show(); + self.elem.find(".twistyPlugin").show(); }, 1); + + self.updateFavicon(); + }; + + // update the favicon with the number of marks ************************* + MetaComments.prototype.updateFavicon = function() { + var self = this, count; + + if (!foswiki.faviconManager) { + return; + } + + count = self.elem.find(".cmtMark").length; + //console.log("found cmtMarks=",count); + foswiki.faviconManager.setText(count ? count : ""); + }; + + // function to reload all dialogs ************************************** + MetaComments.prototype.loadDialogs = function() { + var self = this, + dld = $.Deferred(); + + if (!doneLoadDialogs) { + doneLoadDialogs = true; + + $.get( + foswiki.getScriptUrl("rest", "RenderPlugin", "template", { + name:'metacomments', + render:'on', + topic: self.opts.baseTopic, + expand:'comments::dialogs' + }), function(data) { + $('body').append(data); + + window.setTimeout(function() { + dld.resolve(); + }, 100); // wait for livequeries ... + } + ); + + } else { + $(".cmtDialog form").resetForm(); + dld.resolve(); + } + + return dld; + }; + + // reuload all comments ************************************************ + MetaComments.prototype.reload = function() { + var self = this; + + var url = foswiki.getScriptUrl("rest", "RenderPlugin", "template", { + "name": "metacomments", + "render": "on", + "topic": self.opts.baseTopic, + "commentstopic": self.opts.topic, + "expand": "metacomments", + "cachecontrol": 0 + }); + + self.container.load(url, function() { + $.unblockUI(); + self.container.height('auto'); + }); + }; + + $.fn.metaComments = function (opts) { + return this.each(function () { + if (!$.data(this, "MetaComments")) { + $.data(this, "MetaComments", new MetaComments(this, opts)); + } + }); + }; + + // Enable declarative widget instanziation + $(function() { + $(".cmtComments").livequery(function() { + $(this).metaComments(); + }); + }); + + /* ajaxify forms ********************************************************/ + $(".cmtJsonRpcForm").livequery(function() { + var $form = $(this), + msg = $form.data("message"); + + $form.on("refresh", function() { + $form.find(".natedit").each(function() { + var editor = $(this).data("natedit"), + val = $(this).val(); + if (editor) { + editor.setValue(val); + } + }); + }); + + $form.ajaxForm({ + beforeSerialize: function() { + if (typeof(foswikiStrikeOne) !== 'undefined') { + foswikiStrikeOne($form[0]); + } + $form.find(".natedit").each(function() { + var editor = $(this).data("natedit"); + if (editor) { + editor.beforeSubmit(); + } + }); + }, + beforeSubmit: function() { + if ($form.is(".cmtModalForm")) { + $form.parent().dialog("close"); + } + $.blockUI({ + message:"

"+msg+" ...

", + fadeIn: 0, + fadeOut: 0 + }); + }, + success: function(data) { + if(data.error) { + $.unblockUI(); + $.pnotify({ + title: "Error", + text: data.error.message, + type:"error" + }); + } else { + if (globalMetaComments) { + globalMetaComments.reload(); + } + } + }, + error: function(xhr) { + var data = $.parseJSON(xhr.responseText); + $.unblockUI(); + $.pnotify({ + title: "Error", + text: data.error.message, + type:"error" + }); + } + }); }); -}); + +})(jQuery); diff --git a/pub/System/MetaCommentPlugin/naviblocker.js b/pub/System/MetaCommentPlugin/naviblocker.js new file mode 100644 index 0000000..14f1372 --- /dev/null +++ b/pub/System/MetaCommentPlugin/naviblocker.js @@ -0,0 +1 @@ +"use strict";!function(e){var i={formElements:"textarea, input[type='text'], select"};function t(t,n){var r=this;r.elem=e(t),r.opts=e.extend({},i,n),r.elem.is("form")?r.init():console.error("NaviBlocker: element is not a form: ",t)}t.prototype.init=function(){var i=this;i.initialForm=i.serialize(),i.elem.on("refresh",(function(){i.initialForm=i.serialize()})),e(window).on("beforeunload",(function(e){if(i.hasChanged())return e.preventDefault(),"Are you sure?"}))},t.prototype.hasChanged=function(){var e=this;return!!document.body.contains(e.elem[0])&&!(!e.elem.is(":visible")||e.initialForm===e.serialize())},t.prototype.serialize=function(){return this.elem.find(this.opts.formElements).fieldSerialize()},e.fn.naviBlocker=function(i){return this.each((function(){e.data(this,"NaviBlocker")||e.data(this,"NaviBlocker",new t(this,i))}))},e((function(){e(".naviBlocker").livequery((function(){e(this).naviBlocker()}))}))}(jQuery); diff --git a/pub/System/MetaCommentPlugin/naviblocker.uncompressed.js b/pub/System/MetaCommentPlugin/naviblocker.uncompressed.js new file mode 100644 index 0000000..c736b6b --- /dev/null +++ b/pub/System/MetaCommentPlugin/naviblocker.uncompressed.js @@ -0,0 +1,104 @@ +/* + +Foswiki - The Free and Open Source Wiki, http://foswiki.org/ + +(c)opyright 2021 Michael Daum http://michaeldaumconsulting.com + +are listed in the AUTHORS file in the root of this distribution. +NOTE: Please extend that file, not this notice. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. For +more details read LICENSE in the root of this distribution. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +As per the GPL, removal of this notice is prohibited. + +*/ +/*global foswikiStrikeOne:false */ +"use strict"; +(function($) { + + var defaults = { + "formElements": "textarea, input[type='text'], select" + }; + + function NaviBlocker(elem, opts) { + var self = this; + self.elem = $(elem); + + self.opts = $.extend({}, defaults, opts); + + if (self.elem.is("form")) { + self.init(); + } else { + console.error("NaviBlocker: element is not a form: ",elem); + } + } + + NaviBlocker.prototype.init = function () { + var self = this; + + self.initialForm = self.serialize(); + + self.elem.on("refresh", function() { + //console.log("got refresh event"); + self.initialForm = self.serialize(); + }); + + $(window).on("beforeunload", function(e) { + //console.log("got beforeunload event"); + + if (self.hasChanged()) { + //console.log("blocking navigation") + //console.log("initial=",self.initialForm); + //console.log("current=",self.serialize()); + e.preventDefault(); + return "Are you sure?"; // dummy text + } + return; + }); + + }; + + NaviBlocker.prototype.hasChanged = function() { + var self = this; + + //console.log("testing changes in form",self.elem); + if (!document.body.contains(self.elem[0])) { + //console.log("element not part of the document anymore...skipping blocker"); + return false; + } else { + return (self.elem.is(":visible") && self.initialForm !== self.serialize()) ? true : false; + } + }; + + NaviBlocker.prototype.serialize = function() { + var self = this, + string = self.elem.find(self.opts.formElements).fieldSerialize(); + + //console.log("serialized string=",string,"for form=",self.elem[0]); + + return string; + }; + + $.fn.naviBlocker = function (opts) { + return this.each(function () { + if (!$.data(this, "NaviBlocker")) { + $.data(this, "NaviBlocker", new NaviBlocker(this, opts)); + } + }); + }; + + $(function() { + $(".naviBlocker").livequery(function() { + $(this).naviBlocker(); + }); + }); + +})(jQuery); diff --git a/pub/System/MetaCommentPlugin/nobody.png b/pub/System/MetaCommentPlugin/nobody.png new file mode 100644 index 0000000..32d12ba Binary files /dev/null and b/pub/System/MetaCommentPlugin/nobody.png differ diff --git a/templates/metacomments.tmpl b/templates/metacomments.tmpl index fde6c74..ddd9d8b 100644 --- a/templates/metacomments.tmpl +++ b/templates/metacomments.tmpl @@ -1,9 +1,11 @@ %{ ################################################################################ metacomments - entry point }% +%TMPL:INCLUDE{"edittoolbar"}% +%TMPL:DEF{"comments::topic"}%%URLPARAM{"commentstopic" default="%WEB%.%TOPIC%"}%%TMPL:END% %TMPL:DEF{"metacomments"}% %CLEAR% -
+
%TMPL:P{"comments::topbar"}%%{}% %IF{"$COMMENTFORMAT=~'reverse|insidetab' and $COMMENTSTATE!='closed'" then="$percntTMPL:P{\"comments::add::simple\"}$percnt" @@ -12,21 +14,30 @@ then="$percntTMPL:P{\"comments::add::default\"}$percnt" }%
%TMPL:END% +%TMPL:DEF{"textarea::spellcheck"}%%NATEDIT_SPELLCHECK{default="true"}%%TMPL:END% +%TMPL:DEF{"textarea::metadata"}%data-show-toolbar='true' data-show-fullscreen='true' data-toolbar='comments::toolbar'%TMPL:END% + +%TMPL:DEF{"comments::toolbar"}% +%TMPL:P{"edittoolbar::start"}% +%TMPL:P{"edittoolbar::right"}% +%TMPL:P{"edittoolbar::typobuttons"}% +%TMPL:P{"edittoolbar::typomenu"}% +%TMPL:P{"edittoolbar::listbuttons"}% +%TMPL:P{"edittoolbar::end"}% +%TMPL:END% + +%TMPL:DEF{"edittoolbar::typobuttons"}%
+ + + + + +
%TMPL:END% %{ ################################################################################ metacomments::init - loads all required css and js }% -%TMPL:DEF{"metacomments::init"}% -%ADDTOZONE{ - "head" - id="METACOMMENTPLUGIN::CSS" - text="" -}%%ADDTOZONE{ - "script" - id="METACOMMENTPLUGIN::JS" - requires="JQUERYPLUGIN::UI, JQUERYPLUGIN::FORM, JQUERYPLUGIN::JSONRPC, JQUERYPLUGIN::PNOTIFY, JQUERYPLUGIN::SCROLLTO" - text="" -}%%{}%%TMPL:END% +%TMPL:DEF{"metacomments::init"}%%JQREQUIRE{"metacomment, natedit, emoji, favicon" warn="off"}%%TMPL:END% %{ ################################################################################ metacomments::dialog - loads all required dialogs @@ -46,7 +57,10 @@ }% %TMPL:DEF{"comments::topbar"}%%{}% %METACOMMENTS{ - rev="%URLPARAM{"rev"}%" + %IF{"'%TMPL:P{"comments::topic"}%'='%WEB%.%TOPIC%'" + then="rev=\"%URLPARAM{"rev"}%\"" + }% + topic="%TMPL:P{"comments::topic"}%" header="$percntTMPL:P{\"comments::topbar::rss\"}$percnt

$count $percntTMPL:P{\"comments::topbar::toggle\"}$percnt

" singular="%MAKETEXT{"One comment"}%" plural="%MAKETEXT{"[_1] comments" args="$count"}%" @@ -112,7 +126,7 @@ %{ ################################################################################ comments::format - returns the current format style }% -%TMPL:DEF{"comments::format"}%%IF{ "defined COMMENTFORMAT" then="%COMMENTFORMAT%" else="%TMPL:P{"comments::format::default"}%"}%%TMPL:END% +%TMPL:DEF{"comments::format"}%%COMMENTFORMAT{default="%TMPL:P{"comments::format::default"}%"}%%TMPL:END% %TMPL:DEF{"comments::format::default"}%threaded%TMPL:END% %{ ################################################################################ @@ -124,13 +138,16 @@ comments::list - renders a list of available comments }% %TMPL:DEF{"comments::list"}%%METACOMMENTS{ - rev="%URLPARAM{"rev"}%" + %IF{"'%TMPL:P{"comments::topic"}%'='%WEB%.%TOPIC%'" + then="rev=\"%URLPARAM{"rev"}%\"" + }% + topic="%TMPL:P{"comments::topic"}%" template="comments::format::%TMPL:P{"comments::format"}%" subtemplate="comments::format::%TMPL:P{"comments::format"}%::subcomment" %IF{"'%TMPL:P{"comments::format"}%' = 'threaded'" then="threaded=\"on\""}% %IF{"'%TMPL:P{"comments::format"}%' =~ 'reverse|insidetab'" then="reverse=\"on\""}% %IF{"$COMMENTMODERATION='on'" then="moderation=\"on\"" else="moderation=\"off\""}% - header="
$percntTMPL:P{\"comments::list::controls\"}$percnt" + header="
$percntTMPL:P{\"comments::list::controls\" ismoderated=\"$ismoderated\"}$percnt" footer="
" }%%CLEAR%%TMPL:END% @@ -139,7 +156,9 @@ }% %TMPL:DEF{"comments::list::controls"}%
%TMPL:P{"comments::list::controls::markall"}%%{}% -%TMPL:P{"comments::list::controls::approveall"}%%{}% +%IF{"%ismoderated%" + then="$percntTMPL:P{\"comments::list::controls::approveall\"}$percnt +}%%{}% %TMPL:P{"comments::list::controls::deleteall"}%%{}% %CLEAR%
%TMPL:END% @@ -151,15 +170,17 @@ %{ ################################################################################ comments::format::linear - format one comment in linear format }% -%TMPL:DEF{"comments::format::linear"}%
-
+%TMPL:DEF{"comments::format::linear"}%
+

$index

%TMPL:P{ "comment::photo" web="%USERSWEB%" - topic="%USERINFO{"$author" format="$wikiname"}%" + topic="%TMPL:P{"comment::author" author="$author"}%" + }%%{}% + %IF{"'%subcomment%'!='true'" + then="%TMPL:P{"comment::title"}%" }%%{}% - %TMPL:P{"comment::title"}%%{}% %TMPL:P{"comment::text"}%%{}% %TMPL:P{"comment::controls"}%%{}% %TMPL:P{"comment::approval"}%%{}% @@ -181,7 +202,7 @@ %TMPL:DEF{"comment::info::author"}%%IF{"istopic '%USERSWEB%.$author'" - then="[[%USERSWEB%.$author]]" + then="[[%USERSWEB%.$author]]" else="%IF{"'$authorurl'!=''" then="[[$authorurl][%ENCODE{"$author" type="safe"}%]]" else="%ENCODE{"$author" type="safe"}%" @@ -208,7 +229,7 @@ comment::title - renders the comment title }% %TMPL:DEF{"comment::title"}%%IF{"'%ENCODE{"$title" type="entity"}%'!=''" - then="

%ENCODE{"$title" type="entity"}%

" + then="

%ENCODE{"$title" type="entity"}%

" }%%TMPL:END% %{ ################################################################################ @@ -226,10 +247,9 @@ %{ ################################################################################ comment::controls - renders the comment tools }% -%TMPL:DEF{"comment::controls"}%
- %IF{"context canComment and $COMMENTSTATE!='closed' and not ('%TMPL:P{"comments::format"}%' =~ 'reverse|insidetab')" - then="%JQICON{"fa-comment"}%" - }%%IF{"($ismoderator or '%ENCODE{"$author" type="safe"}%'='%WIKINAME%') and $COMMENTSTATE!='closed'" +%TMPL:DEF{"comment::controls"}% +
+ %IF{"($ismoderator or '%ENCODE{"$author" type="safe"}%'='%WIKINAME%') and $COMMENTSTATE!='closed'" then="%JQICON{"fa-pencil"}%" }%%IF{"$COMMENTMODERATION='on' and $ismoderator and '$state'=~'\bunapproved\b'" then="%JQICON{"fa-certificate"}%" @@ -238,49 +258,70 @@ }%%{}%
%TMPL:END% +%TMPL:DEF{"comment::reply"}%%IF{"context canComment and $COMMENTSTATE!='closed' and not ('%TMPL:P{"comments::format"}%' =~ 'reverse|insidetab')" + then="$dollarpercntBUTTON{\\"%MAKETEXT{"Reply"}%\\" + icon=\\"fa-comment\\" + align=\\"right\" + class=\\"cmtReply simple\\" + title=\\"%MAKETEXT{"Comment on this thread"}%\\" + }$dollarpercnt" +}%%TMPL:END% + %{ ################################################################################ comments::format::linear::subcomment - sub-comments for linear mode }% -%TMPL:DEF{"comments::format::linear::subcomment"}%%TMPL:P{"comments::format::linear"}%%TMPL:END% +%TMPL:DEF{"comments::format::linear::subcomment"}%%TMPL:P{"comments::format::linear" subcomment="true"}%%TMPL:END% %{ ################################################################################ comments::format::threaded - format comments in threaded format }% -%TMPL:DEF{"comments::format::threaded"}%
-
+%TMPL:DEF{"comments::format::threaded"}%
+

$index

%TMPL:P{ "comment::photo" web="%USERSWEB%" - topic="%USERINFO{"$author" format="$wikiname"}%" + topic="%TMPL:P{"comment::author" author="$author"}%" + }%%{}% + %IF{"'%subcomment%'!='true'" + then="%TMPL:P{"comment::title"}%" }%%{}% - %TMPL:P{"comment::title"}%%{}% %TMPL:P{"comment::text"}%%{}% %TMPL:P{"comment::controls"}%%{}% %TMPL:P{"comment::approval"}%%{}% %TMPL:P{"comment::info"}%%CLEAR%
$subcomments + %IF{"'%subcomment%'!='true'" + then="%TMPL:P{"comment::reply"}%" + }%%{}%
%TMPL:END% +%TMPL:DEF{"comment::author"}%%IF{ + "'%USERINFO{"%author%" format="$wikiname"}%'=''" + then="nobody" + else="%USERINFO{"%author%" format="$wikiname"}%" +}%%TMPL:END% + %{ ################################################################################ comments::format::threaded::subcomment - sub-comments for linear mode }% -%TMPL:DEF{"comments::format::threaded::subcomment"}%%TMPL:P{"comments::format::threaded"}%%TMPL:END% +%TMPL:DEF{"comments::format::threaded::subcomment"}%%TMPL:P{"comments::format::threaded" subcomment="true"}%%TMPL:END% %{ ################################################################################ comments::format::reverse - format comments in reverse mode }% -%TMPL:DEF{"comments::format::reverse"}%
-
+%TMPL:DEF{"comments::format::reverse"}%
+

$index

%TMPL:P{ "comment::photo" web="%USERSWEB%" - topic="%USERINFO{"$author" format="$wikiname"}%" + topic="%TMPL:P{"comment::author" author="$author"}%" + }%%{}% + %IF{"'%subcomment%'!='true'" + then="%TMPL:P{"comment::title"}%" }%%{}% - %TMPL:P{"comment::title"}%%{}% - %TMPL:P{"comment::title"}%%{}% %TMPL:P{"comment::text"}%%{}% %TMPL:P{"comment::controls"}%%{}% %TMPL:P{"comment::approval"}%%{}% @@ -293,9 +334,9 @@ %{ ################################################################################ comments::confirmdelete - dialog to confirm a delete }% -%TMPL:DEF{"comments::confirmdelete"}%%TMPL:END% %{ ################################################################################ comments::confirmdeleteall - dialog to confirm delete _all_ comments }% -%TMPL:DEF{"comments::confirmdeleteall"}%