diff --git a/actions/newnotice.php b/actions/newnotice.php
index a8a5fa932f..0aafcd41c6 100644
--- a/actions/newnotice.php
+++ b/actions/newnotice.php
@@ -331,6 +331,8 @@ class NewnoticeAction extends Action
}
/**
+ * // XXX: Should we be showing the notice form with microapps here?
+ *
* Overload for replies or bad results
*
* We show content in the notice form if there were replies or results.
@@ -352,10 +354,27 @@ class NewnoticeAction extends Action
$inreplyto = null;
}
- $notice_form = new NoticeForm($this, array('content' => $content,
- 'inreplyto' => $inreplyto));
+ $this->elementStart('div', 'input_forms');
+ $this->elementStart(
+ 'div',
+ array(
+ 'id' => 'input_form_status',
+ 'class' => 'input_form current nonav'
+ )
+ );
+
+ $notice_form = new NoticeForm(
+ $this,
+ array(
+ 'content' => $content,
+ 'inreplyto' => $inreplyto
+ )
+ );
$notice_form->show();
+
+ $this->elementEnd('div');
+ $this->elementEnd('div');
}
/**
diff --git a/actions/noticesearch.php b/actions/noticesearch.php
index 257a925835..d4fc884f4b 100644
--- a/actions/noticesearch.php
+++ b/actions/noticesearch.php
@@ -132,19 +132,19 @@ class NoticesearchAction extends SearchAction
*/
function showResults($q, $page)
{
- if ($this->notice->N === 0) {
- $this->showEmptyResults($q, $page);
- }
-
if (Event::handle('StartNoticeSearchShowResults', array($this, $q, $this->notice))) {
- $terms = preg_split('/[\s,]+/', $q);
- $nl = new SearchNoticeList($this->notice, $this, $terms);
- $cnt = $nl->show();
- $this->pagination($page > 1,
- $cnt > NOTICES_PER_PAGE,
- $page,
- 'noticesearch',
- array('q' => $q));
+ if ($this->notice->N === 0) {
+ $this->showEmptyResults($q, $page);
+ } else {
+ $terms = preg_split('/[\s,]+/', $q);
+ $nl = new SearchNoticeList($this->notice, $this, $terms);
+ $cnt = $nl->show();
+ $this->pagination($page > 1,
+ $cnt > NOTICES_PER_PAGE,
+ $page,
+ 'noticesearch',
+ array('q' => $q));
+ }
Event::handle('EndNoticeSearchShowResults', array($this, $q, $this->notice));
}
}
diff --git a/js/util.js b/js/util.js
index cadf730075..80dc837844 100644
--- a/js/util.js
+++ b/js/util.js
@@ -1389,6 +1389,14 @@ var SN = { // StatusNet
$('#input_form_nav_'+tag).addClass('current');
}
+ // Don't remove 'current' if we also have the "nonav" class.
+ // An example would be the message input form. removing
+ // 'current' will cause the form to vanish from the page.
+ var nonav = $('.input_form.current.nonav');
+ if (nonav.length > 0) {
+ return;
+ }
+
$('.input_form.current').removeClass('current');
$('#input_form_'+tag)
.addClass('current')
diff --git a/js/util.min.js b/js/util.min.js
index af4b97ea8d..b3a5390e25 100644
--- a/js/util.min.js
+++ b/js/util.min.js
@@ -1 +1 @@
-var SN={C:{I:{CounterBlackout:false,MaxLength:140,PatternUsername:/^[0-9a-zA-Z\-_.]*$/,HTTP20x30x:[200,201,202,203,204,205,206,300,301,302,303,304,305,306,307],NoticeFormMaster:null},S:{Disabled:"disabled",Warning:"warning",Error:"error",Success:"success",Processing:"processing",CommandResult:"command_result",FormNotice:"form_notice",NoticeDataGeo:"notice_data-geo",NoticeDataGeoCookie:"NoticeDataGeo",NoticeDataGeoSelected:"notice_data-geo_selected",StatusNetInstance:"StatusNetInstance"}},messages:{},msg:function(a){if(typeof SN.messages[a]=="undefined"){return"["+a+"]"}else{return SN.messages[a]}},U:{FormNoticeEnhancements:function(b){if(jQuery.data(b[0],"ElementData")===undefined){MaxLength=b.find(".count").text();if(typeof(MaxLength)=="undefined"){MaxLength=SN.C.I.MaxLength}jQuery.data(b[0],"ElementData",{MaxLength:MaxLength});SN.U.Counter(b);NDT=b.find(".notice_data-text:first");NDT.bind("keyup",function(c){SN.U.Counter(b)});var a=function(c){window.setTimeout(function(){SN.U.Counter(b)},50)};NDT.bind("cut",a).bind("paste",a)}else{b.find(".count").text(jQuery.data(b[0],"ElementData").MaxLength)}},Counter:function(d){SN.C.I.FormNoticeCurrent=d;var b=jQuery.data(d[0],"ElementData").MaxLength;if(b<=0){return}var c=b-SN.U.CharacterCount(d);var a=d.find(".count");if(c.toString()!=a.text()){if(!SN.C.I.CounterBlackout||c===0){if(a.text()!=String(c)){a.text(c)}if(c<0){d.addClass(SN.C.S.Warning)}else{d.removeClass(SN.C.S.Warning)}if(!SN.C.I.CounterBlackout){SN.C.I.CounterBlackout=true;SN.C.I.FormNoticeCurrent=d;window.setTimeout("SN.U.ClearCounterBlackout(SN.C.I.FormNoticeCurrent);",500)}}}},CharacterCount:function(a){return a.find(".notice_data-text:first").val().length},ClearCounterBlackout:function(a){SN.C.I.CounterBlackout=false;SN.U.Counter(a)},RewriteAjaxAction:function(a){if(document.location.protocol=="https:"&&a.substr(0,5)=="http:"){return a.replace(/^http:\/\/[^:\/]+/,"https://"+document.location.host)}else{return a}},FormXHR:function(a){$.ajax({type:"POST",dataType:"xml",url:SN.U.RewriteAjaxAction(a.attr("action")),data:a.serialize()+"&ajax=1",beforeSend:function(b){a.addClass(SN.C.S.Processing).find(".submit").addClass(SN.C.S.Disabled).attr(SN.C.S.Disabled,SN.C.S.Disabled)},error:function(d,e,c){var b=null;if(d.responseXML){b=$("#error",d.responseXML).text()}alert(b||c||e);a.removeClass(SN.C.S.Processing).find(".submit").removeClass(SN.C.S.Disabled).removeAttr(SN.C.S.Disabled)},success:function(b,c){if(typeof($("form",b)[0])!="undefined"){form_new=document._importNode($("form",b)[0],true);a.replaceWith(form_new)}else{if(typeof($("p",b)[0])!="undefined"){a.replaceWith(document._importNode($("p",b)[0],true))}else{alert("Unknown error.")}}}})},FormNoticeXHR:function(b){SN.C.I.NoticeDataGeo={};b.append('');b.attr("action",SN.U.RewriteAjaxAction(b.attr("action")));var c=function(d,e){b.append($('
').addClass(d).text(e))};var a=function(){b.find(".form_response").remove()};b.ajaxForm({dataType:"xml",timeout:"60000",beforeSend:function(d){if(b.find(".notice_data-text:first").val()==""){b.addClass(SN.C.S.Warning);return false}b.addClass(SN.C.S.Processing).find(".submit").addClass(SN.C.S.Disabled).attr(SN.C.S.Disabled,SN.C.S.Disabled);SN.U.normalizeGeoData(b);return true},error:function(f,g,e){b.removeClass(SN.C.S.Processing).find(".submit").removeClass(SN.C.S.Disabled).removeAttr(SN.C.S.Disabled,SN.C.S.Disabled);a();if(g=="timeout"){c("error","Sorry! We had trouble sending your notice. The servers are overloaded. Please try again, and contact the site administrator if this problem persists.")}else{var d=SN.U.GetResponseXML(f);if($("."+SN.C.S.Error,d).length>0){b.append(document._importNode($("."+SN.C.S.Error,d)[0],true))}else{if(parseInt(f.status)===0||jQuery.inArray(parseInt(f.status),SN.C.I.HTTP20x30x)>=0){b.resetForm().find(".attach-status").remove();SN.U.FormNoticeEnhancements(b)}else{c("error","(Sorry! We had trouble sending your notice ("+f.status+" "+f.statusText+"). Please report the problem to the site administrator if this happens again.")}}}},success:function(j,f){a();var p=$("#"+SN.C.S.Error,j);if(p.length>0){c("error",p.text())}else{if($("body")[0].id=="bookmarklet"){self.close()}var d=$("#"+SN.C.S.CommandResult,j);if(d.length>0){c("success",d.text())}else{var o=document._importNode($("li",j)[0],true);var k=$("#notices_primary .notices:first");var m=b.closest("li.notice-reply");if(m.length>0){var l=b.closest(".threaded-replies");var n=l.find(".notice-reply-placeholder");m.remove();var e=$(o).attr("id");if($("#"+e).length==0){$(o).insertBefore(n)}else{}n.show()}else{if(k.length>0&&SN.U.belongsOnTimeline(o)){if($("#"+o.id).length===0){var h=b.find("[name=inreplyto]").val();var g="#notices_primary #notice-"+h;if($("body")[0].id=="conversation"){if(h.length>0&&$(g+" .notices").length<1){$(g).append('
');h.find("button.close").click(function(){e.find("[name=notice_data-geo]").removeAttr("checked").change();return false});e.append(h)}var b;if(c){b=$("").attr("href",c)}else{b=$("")}b.text(a);if(f||g){var d=f+";"+g;b.attr("title",d);if(!a){b.text(d)}}h.find(".geo_status").empty().append(b)},NewDirectMessage:function(){NDM=$(".entity_send-a-message a");NDM.attr({href:NDM.attr("href")+"&ajax=1"});NDM.bind("click",function(){var a=$(".entity_send-a-message form");if(a.length===0){$(this).addClass(SN.C.S.Processing);$.get(NDM.attr("href"),null,function(b){$(".entity_send-a-message").append(document._importNode($("form",b)[0],true));a=$(".entity_send-a-message .form_notice");SN.U.FormNoticeXHR(a);SN.U.FormNoticeEnhancements(a);a.append('');$(".entity_send-a-message button").click(function(){a.hide();return false});NDM.removeClass(SN.C.S.Processing)})}else{a.show();$(".entity_send-a-message textarea").focus()}return false})},GetFullYear:function(c,d,a){var b=new Date();b.setFullYear(c,d,a);return b},StatusNetInstance:{Set:function(b){var a=SN.U.StatusNetInstance.Get();if(a!==null){b=$.extend(a,b)}$.cookie(SN.C.S.StatusNetInstance,JSON.stringify(b),{path:"/",expires:SN.U.GetFullYear(2029,0,1)})},Get:function(){var a=$.cookie(SN.C.S.StatusNetInstance);if(a!==null){return JSON.parse(a)}return null},Delete:function(){$.cookie(SN.C.S.StatusNetInstance,null)}},belongsOnTimeline:function(b){var a=$("body").attr("id");if(a=="public"){return true}var c=$("#nav_profile a").attr("href");if(c){var d=$(b).find(".vcard.author a.url").attr("href");if(d==c){if(a=="all"||a=="showstream"){return true}}}return false},switchInputFormTab:function(a){$(".input_form_nav_tab.current").removeClass("current");if(a=="placeholder"){$("#input_form_nav_status").addClass("current")}else{$("#input_form_nav_"+a).addClass("current")}var b=$(".input_form.current.nonav");if(b.length>0){return}$(".input_form.current").removeClass("current");$("#input_form_"+a).addClass("current").find(".ajax-notice").each(function(){var c=$(this);SN.Init.NoticeFormSetup(c)}).find("textarea:first").focus()}},Init:{NoticeForm:function(){if($("body.user_in").length>0){$("#input_form_placeholder input.placeholder").focus(function(){SN.U.switchInputFormTab("status")});$("body").bind("click",function(g){var d=$("#content .input_forms div.current");if(d.length>0){if($("#content .input_forms").has(g.target).length==0){var a=d.find('textarea, input[type=text], input[type=""]');var c=false;a.each(function(){c=c||$(this).val()});if(!c){SN.U.switchInputFormTab("placeholder")}}}var b=$("li.notice-reply");if(b.length>0){var f=$(g.target);b.each(function(){var k=$(this);if(k.has(g.target).length==0){var h=k.find(".notice_data-text:first");var j=$.trim(h.val());if(j==""||j==h.data("initialText")){var e=k.closest("li.notice");k.remove();e.find("li.notice-reply-placeholder").show()}}})}})}},NoticeFormSetup:function(a){if(!a.data("NoticeFormSetup")){SN.U.NoticeLocationAttach(a);SN.U.FormNoticeXHR(a);SN.U.FormNoticeEnhancements(a);SN.U.NoticeDataAttach(a);a.data("NoticeFormSetup",true)}},Notices:function(){if($("body.user_in").length>0){var a=$(".form_notice:first");if(a.length>0){SN.C.I.NoticeFormMaster=document._importNode(a[0],true)}SN.U.NoticeRepeat();SN.U.NoticeReply();SN.U.NoticeInlineReplySetup()}SN.U.NoticeAttachments()},EntityActions:function(){if($("body.user_in").length>0){$(".form_user_subscribe").live("click",function(){SN.U.FormXHR($(this));return false});$(".form_user_unsubscribe").live("click",function(){SN.U.FormXHR($(this));return false});$(".form_group_join").live("click",function(){SN.U.FormXHR($(this));return false});$(".form_group_leave").live("click",function(){SN.U.FormXHR($(this));return false});$(".form_user_nudge").live("click",function(){SN.U.FormXHR($(this));return false});$(".form_peopletag_subscribe").live("click",function(){SN.U.FormXHR($(this));return false});$(".form_peopletag_unsubscribe").live("click",function(){SN.U.FormXHR($(this));return false});$(".form_user_add_peopletag").live("click",function(){SN.U.FormXHR($(this));return false});$(".form_user_remove_peopletag").live("click",function(){SN.U.FormXHR($(this));return false});SN.U.NewDirectMessage()}},ProfileSearch:function(){if($("body.user_in").length>0){$(".form_peopletag_edit_user_search input.submit").live("click",function(){SN.U.FormProfileSearchXHR($(this).parents("form"));return false})}},Login:function(){if(SN.U.StatusNetInstance.Get()!==null){var a=SN.U.StatusNetInstance.Get().Nickname;if(a!==null){$("#form_login #nickname").val(a)}}$("#form_login").bind("submit",function(){SN.U.StatusNetInstance.Set({Nickname:$("#form_login #nickname").val()});return true})},PeopletagAutocomplete:function(b){var a=function(d){return d.split(/\s+/)};var c=function(d){return a(d).pop()};b.live("keydown",function(d){if(d.keyCode===$.ui.keyCode.TAB&&$(this).data("autocomplete").menu.active){d.preventDefault()}}).autocomplete({minLength:0,source:function(e,d){d($.ui.autocomplete.filter(SN.C.PtagACData,c(e.term)))},focus:function(){return false},select:function(e,f){var d=a(this.value);d.pop();d.push(f.item.value);d.push("");this.value=d.join(" ");return false}}).data("autocomplete")._renderItem=function(e,f){var d=''+f.tag+' '+f.mode+''+f.freq+"";return $("").addClass("mode-"+f.mode).addClass("ptag-ac-line").data("item.autocomplete",f).append(d).appendTo(e)}},PeopleTags:function(){$(".user_profile_tags .editable").append($(''));$(".peopletags_edit_button").live("click",function(){var a=$(this).parents("dd").eq(0).find("form");$.ajax({url:_peopletagAC,dataType:"json",data:{token:$("#token").val()},ifModified:true,success:function(b){for(i=0;i').attr("name",a.attr("name")).val(a.val()).appendTo(b)})},UploadForms:function(){$("input[type=file]").change(function(d){if(typeof this.files=="object"&&this.files.length>0){var c=0;for(var b=0;b0&&c>a){var e="File too large: maximum upload size is %d bytes.";alert(e.replace("%d",a));$(this).val("");d.preventDefault();return false}}})},CheckBoxes:function(){$("span[class='checkbox-wrapper']").addClass("unchecked");$(".checkbox-wrapper").click(function(){if($(this).children("input").attr("checked")){$(this).children("input").attr({checked:""});$(this).removeClass("checked");$(this).addClass("unchecked");$(this).children("label").text("Private?")}else{$(this).children("input").attr({checked:"checked"});$(this).removeClass("unchecked");$(this).addClass("checked");$(this).children("label").text("Private")}})}}};$(document).ready(function(){SN.Init.AjaxForms();SN.Init.UploadForms();SN.Init.CheckBoxes();if($("."+SN.C.S.FormNotice).length>0){SN.Init.NoticeForm()}if($("#content .notices").length>0){SN.Init.Notices()}if($("#content .entity_actions").length>0){SN.Init.EntityActions()}if($("#form_login").length>0){SN.Init.Login()}if($("#profile_search_results").length>0){SN.Init.ProfileSearch()}if($(".user_profile_tags .editable").length>0){SN.Init.PeopleTags()}});if(!document.ELEMENT_NODE){document.ELEMENT_NODE=1;document.ATTRIBUTE_NODE=2;document.TEXT_NODE=3;document.CDATA_SECTION_NODE=4;document.ENTITY_REFERENCE_NODE=5;document.ENTITY_NODE=6;document.PROCESSING_INSTRUCTION_NODE=7;document.COMMENT_NODE=8;document.DOCUMENT_NODE=9;document.DOCUMENT_TYPE_NODE=10;document.DOCUMENT_FRAGMENT_NODE=11;document.NOTATION_NODE=12}document._importNode=function(e,a){switch(e.nodeType){case document.ELEMENT_NODE:var d=document.createElement(e.nodeName);if(e.attributes&&e.attributes.length>0){for(var c=0,b=e.attributes.length;c0){for(var c=0,b=e.childNodes.length;c0){var k=c.pop();k()}}};window._google_loader_apiLoaded=function(){f()};var d=function(){return(window.google&&google.loader)};var g=function(k){if(d()){return true}h(k);e();return false};e();return{shim:true,type:"ClientLocation",lastPosition:null,getCurrentPosition:function(l,o,p){var n=this;if(!g(function(){n.getCurrentPosition(l,o,p)})){return}if(google.loader.ClientLocation){var m=google.loader.ClientLocation;var k={coords:{latitude:m.latitude,longitude:m.longitude,altitude:null,accuracy:43000,altitudeAccuracy:null,heading:null,speed:null},address:{city:m.address.city,country:m.address.country,country_code:m.address.country_code,region:m.address.region},timestamp:new Date()};l(k);this.lastPosition=k}else{if(o==="function"){o({code:3,message:"Using the Google ClientLocation API and it is not able to calculate a location."})}}},watchPosition:function(k,m,n){this.getCurrentPosition(k,m,n);var l=this;var o=setInterval(function(){l.getCurrentPosition(k,m,n)},10000);return o},clearWatch:function(k){clearInterval(k)},getPermission:function(m,k,l){return true}}});navigator.geolocation=(window.google&&google.gears)?a():b()})()};
\ No newline at end of file
diff --git a/lib/command.php b/lib/command.php
index 6254cf2e78..fcc21cc5e5 100644
--- a/lib/command.php
+++ b/lib/command.php
@@ -472,10 +472,13 @@ class TagCommand extends Command
// TRANS: Succes message displayed if tagging a user succeeds.
// TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
- $channel->output($cur, sprintf(_('%1$s was tagged %2$s'),
- $profile->nickname,
- // TRANS: Separator for list of tags.
- implode(_(', '), $clean_tags)));
+ // TRANS: Plural is decided based on the number of tags added (not part of message).
+ $channel->output($cur, sprintf(_m('%1$s was tagged %2$s',
+ '%1$s was tagged %2$s',
+ count($clean_tags)),
+ $profile->nickname,
+ // TRANS: Separator for list of tags.
+ implode(_(', '), $clean_tags)));
}
}
@@ -522,10 +525,13 @@ class UntagCommand extends TagCommand
// TRANS: Succes message displayed if untagging a user succeeds.
// TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
- $channel->output($cur, sprintf(_('The following tag(s) were removed from user %1$s: %2$s.'),
- $profile->nickname,
- // TRANS: Separator for list of tags.
- implode(_(', '), $tags)));
+ // TRANS: Plural is decided based on the number of tags removed (not part of message).
+ $channel->output($cur, sprintf(_m('The following tag was removed from user %1$s: %2$s.',
+ 'The following tags were removed from user %1$s: %2$s.',
+ count($tags)),
+ $profile->nickname,
+ // TRANS: Separator for list of tags.
+ implode(_(', '), $tags)));
}
}
diff --git a/lib/messageform.php b/lib/messageform.php
index bd46d7389d..80e7716cda 100644
--- a/lib/messageform.php
+++ b/lib/messageform.php
@@ -178,4 +178,32 @@ class MessageForm extends Form
// TRANS: Button text for sending a direct notice.
'value' => _m('Send button for sending notice', 'Send')));
}
+
+
+ /**
+ * Show the form
+ *
+ * Uses a recipe to output the form.
+ *
+ * @return void
+ * @see Widget::show()
+ */
+
+ function show()
+ {
+ $this->elementStart('div', 'input_forms');
+ $this->elementStart(
+ 'div',
+ array(
+ 'id' => 'input_form_direct',
+ 'class' => 'input_form current nonav'
+ )
+ );
+
+ parent::show();
+
+ $this->elementEnd('div');
+ $this->elementEnd('div');
+
+ }
}
diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po
index 0915f05994..15134329b3 100644
--- a/locale/ar/LC_MESSAGES/statusnet.po
+++ b/locale/ar/LC_MESSAGES/statusnet.po
@@ -12,19 +12,19 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:24:44+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:19:58+0000\n"
"Language-Team: Arabic \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ar\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == "
"2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= "
"99) ? 4 : 5 ) ) ) );\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -176,7 +176,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2273,9 +2273,8 @@ msgid "No tagger or ID."
msgstr "لا اسم مستعار."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
-msgstr "لا مستخدم كهذا."
+msgstr "ليس مُستخدمًا محليًا."
#. TRANS: Client error displayed when reting to edit a tag that was not self-created.
#, fuzzy
@@ -7794,9 +7793,16 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s و %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s و %2$s"
+msgstr[1] "%1$s و %2$s"
+msgstr[2] "%1$s و %2$s"
+msgstr[3] "%1$s و %2$s"
+msgstr[4] "%1$s و %2$s"
+msgstr[5] "%1$s و %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7805,7 +7811,7 @@ msgstr " و "
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "وسم غير صالح: \"%s\""
@@ -7817,9 +7823,16 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
+msgstr[4] ""
+msgstr[5] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9356,7 +9369,6 @@ msgid "Edit people tag settings."
msgstr "عدّل إعدادات الملف الشخصي."
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "عدّل"
@@ -9432,7 +9444,6 @@ msgid "People tags"
msgstr "أشخاص"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "المستخدم"
diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po
index 4c926a1bdb..9ea25a94e1 100644
--- a/locale/bg/LC_MESSAGES/statusnet.po
+++ b/locale/bg/LC_MESSAGES/statusnet.po
@@ -11,17 +11,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:24:46+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:00+0000\n"
"Language-Team: Bulgarian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: bg\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -174,7 +174,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2292,9 +2292,8 @@ msgid "No tagger or ID."
msgstr "Няма псевдоним."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
-msgstr "Няма такъв потребител"
+msgstr "Не е локален потребител."
#. TRANS: Client error displayed when reting to edit a tag that was not self-created.
#, fuzzy
@@ -7911,9 +7910,12 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s - %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s - %2$s"
+msgstr[1] "%1$s - %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7922,7 +7924,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "Неправилен етикет: \"%s\""
@@ -7934,9 +7936,12 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9430,7 +9435,6 @@ msgid "Edit people tag settings."
msgstr "Редактиране на профила"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Редактиране"
@@ -9507,7 +9511,6 @@ msgid "People tags"
msgstr "Хора"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Потребител"
diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po
index 2ad34660df..3988835f05 100644
--- a/locale/br/LC_MESSAGES/statusnet.po
+++ b/locale/br/LC_MESSAGES/statusnet.po
@@ -12,17 +12,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:24:48+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:01+0000\n"
"Language-Team: Breton \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: br\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -176,7 +176,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2261,9 +2261,8 @@ msgid "No tagger or ID."
msgstr "Lesanv pe ID ebet."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
-msgstr "N'eus ket eus an implijer-se."
+msgstr "N'eo ket un implijer lec'hel."
#. TRANS: Client error displayed when reting to edit a tag that was not self-created.
#, fuzzy
@@ -7839,9 +7838,12 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s - %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s - %2$s"
+msgstr[1] "%1$s - %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7850,7 +7852,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "Balizenn direizh : \"%s\""
@@ -7862,9 +7864,12 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9357,7 +9362,6 @@ msgid "Edit people tag settings."
msgstr "Kemmañ arventennoù ar profil"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Aozañ"
@@ -9433,7 +9437,6 @@ msgid "People tags"
msgstr "Tud"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Implijer"
diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po
index d125f19ef1..fd2ba6cc59 100644
--- a/locale/ca/LC_MESSAGES/statusnet.po
+++ b/locale/ca/LC_MESSAGES/statusnet.po
@@ -16,17 +16,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:24:50+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:02+0000\n"
"Language-Team: Catalan \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ca\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -190,7 +190,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2280,7 +2280,6 @@ msgid "No tagger or ID."
msgstr "Cap sobrenom o ID."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
msgstr "No existeix l'usuari."
@@ -7877,9 +7876,12 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s i %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s i %2$s"
+msgstr[1] "%1$s i %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7888,9 +7890,9 @@ msgstr ", "
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
-msgstr "Etiqueta no vàlida: «%s»."
+msgstr "L'etiqueta no és vàlida: «%s»"
#. TRANS: Error displayed if untagging a user fails.
#. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation).
@@ -7900,9 +7902,12 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9440,7 +9445,6 @@ msgid "Edit people tag settings."
msgstr "Edita els paràmetres del perfil."
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Edita"
@@ -9512,7 +9516,6 @@ msgid "People tags"
msgstr "Gent"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Usuari"
@@ -10248,10 +10251,3 @@ msgstr "L'XML no és vàlid, hi manca l'arrel XRD."
#, php-format
msgid "Getting backup from file '%s'."
msgstr "Es recupera la còpia de seguretat del fitxer '%s'."
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr ""
-#~ "Només podeu etiquetar gent a la qual estigueu subscrit o que us hagin "
-#~ "subscrit."
diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po
index 0dba1dc453..32e419cfc7 100644
--- a/locale/cs/LC_MESSAGES/statusnet.po
+++ b/locale/cs/LC_MESSAGES/statusnet.po
@@ -5,6 +5,7 @@
# Author: Koo6
# Author: Kuvaly
# Author: Veritaslibero
+# Author: W4rr10r
# --
# This file is distributed under the same license as the StatusNet package.
#
@@ -12,18 +13,18 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:24:52+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:04+0000\n"
"Language-Team: Czech \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: cs\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n >= 2 && n <= 4) ? 1 : "
"2 );\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -51,9 +52,8 @@ msgid ""
msgstr ""
#. TRANS: Error message displayed when trying to access a non-existing page.
-#, fuzzy
msgid "Unknown page"
-msgstr "Neznámé"
+msgstr "Neznámá stránka"
#. TRANS: Error message displayed when trying to perform an undefined action.
#. TRANS: Title for password recovery page when an unknown action has been specified.
@@ -74,7 +74,7 @@ msgstr "Registrace"
#. TRANS: Checkbox instructions for admin setting "Private".
msgid "Prohibit anonymous users (not logged in) from viewing site?"
-msgstr "Zakázat anonymním (nepřihlášeným) uživatelům prohlížet stránky"
+msgstr "Zakázat anonymním (nepřihlášeným) uživatelům prohlížet stránky?"
#. TRANS: Checkbox label for prohibiting anonymous users from viewing site.
#. TRANS: Checkbox label to show private tags.
@@ -159,7 +159,7 @@ msgstr "Žádný takový profil."
#. TRANS: Client error displayed trying to reference a non-existing people tag.
#, fuzzy
msgid "No such people tag."
-msgstr "Žádná taková nálepka."
+msgstr "Žádný takový štítek lidí."
#. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile.
#, fuzzy
@@ -177,7 +177,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2322,7 +2322,6 @@ msgid "No tagger or ID."
msgstr "Žádná přezdívka nebo ID."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
msgstr "Uživatel neexistuje."
@@ -8043,9 +8042,13 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s - %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s - %2$s"
+msgstr[1] "%1$s - %2$s"
+msgstr[2] "%1$s - %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -8054,7 +8057,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "Neplatná velikost"
@@ -8066,9 +8069,13 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9664,7 +9671,6 @@ msgid "Edit people tag settings."
msgstr "Upravit nastavení profilu"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Editovat"
@@ -9740,7 +9746,6 @@ msgid "People tags"
msgstr "Lidé"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Uživatel"
@@ -10517,10 +10522,3 @@ msgstr ""
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr ""
-#~ "Můžete označovat pouze lidi, ke kterým jste přihlášen nebo kteří jsou "
-#~ "přihlášeni k vám."
diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po
index 90b06ea21a..5820299835 100644
--- a/locale/de/LC_MESSAGES/statusnet.po
+++ b/locale/de/LC_MESSAGES/statusnet.po
@@ -22,17 +22,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:24:54+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:05+0000\n"
"Language-Team: German \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -186,7 +186,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2311,9 +2311,8 @@ msgid "No tagger or ID."
msgstr "Kein Benutzername oder ID"
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
-msgstr "Unbekannter Benutzer."
+msgstr "Kein lokaler Benutzer."
#. TRANS: Client error displayed when reting to edit a tag that was not self-created.
#, fuzzy
@@ -8059,9 +8058,12 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s – %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s – %2$s"
+msgstr[1] "%1$s – %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -8070,7 +8072,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "Ungültiges Stichwort: „%s“"
@@ -8082,9 +8084,12 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9667,7 +9672,6 @@ msgid "Edit people tag settings."
msgstr "Profil-Einstellungen ändern"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Bearbeiten"
@@ -9744,7 +9748,6 @@ msgid "People tags"
msgstr "Leute"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Benutzer"
@@ -10508,10 +10511,3 @@ msgstr "Ungültiges XML, XRD-Root fehlt."
#, php-format
msgid "Getting backup from file '%s'."
msgstr "Hole Backup von der Datei „%s“."
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr ""
-#~ "Du kannst nur Benutzer taggen, die du abonniert hast oder die dich "
-#~ "abonniert haben."
diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po
index 7f553508db..77dd4b8b2d 100644
--- a/locale/en_GB/LC_MESSAGES/statusnet.po
+++ b/locale/en_GB/LC_MESSAGES/statusnet.po
@@ -14,17 +14,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:24:56+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:07+0000\n"
"Language-Team: British English \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: en-gb\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -177,7 +177,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2306,7 +2306,6 @@ msgid "No tagger or ID."
msgstr "No nickname or ID."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
msgstr "No such user."
@@ -7941,9 +7940,12 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s - %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s - %2$s"
+msgstr[1] "%1$s - %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7952,7 +7954,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "Invalid tag: \"%s\""
@@ -7964,9 +7966,12 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9454,7 +9459,6 @@ msgid "Edit people tag settings."
msgstr "Edit profile settings"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Edit"
@@ -9531,7 +9535,6 @@ msgid "People tags"
msgstr "People"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "User"
@@ -10289,10 +10292,3 @@ msgstr ""
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po
index a0afd0ef02..68824eb77f 100644
--- a/locale/eo/LC_MESSAGES/statusnet.po
+++ b/locale/eo/LC_MESSAGES/statusnet.po
@@ -17,17 +17,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:24:58+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:08+0000\n"
"Language-Team: Esperanto \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: eo\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -180,7 +180,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -779,7 +779,7 @@ msgstr "La alinomo devas ne esti sama al la kromnomo."
#. TRANS: Client error displayed when referring to a non-existing list.
#, fuzzy
msgid "List not found."
-msgstr "Uzanto ne ekzistas."
+msgstr "Listo ne ekzistas."
#. TRANS: Client error displayed when trying to update another user's list.
msgid "You cannot update lists that do not belong to you."
@@ -1813,8 +1813,9 @@ msgid "You cannot delete your account."
msgstr "Vi ne povas forviŝi vian konton."
#. TRANS: Confirmation text for user deletion. The user has to type this exactly the same, including punctuation.
+#, fuzzy
msgid "I am sure."
-msgstr ""
+msgstr "Mi estas certa."
#. TRANS: Notification for user about the text that must be input to be able to delete a user account.
#. TRANS: %s is the text that needs to be input.
@@ -2312,7 +2313,7 @@ msgstr "Uzas ĉi tiun formularon por redakti la grupon."
#. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect.
#, fuzzy
msgid "Delete aborted."
-msgstr "Forigi avizon"
+msgstr "Forigo rezigniĝis."
#. TRANS: Text in confirmation dialog for deleting a tag.
msgid ""
@@ -7433,7 +7434,7 @@ msgstr "Ne troviĝas la enhavo por la avizo %s."
#. TRANS: Exception thrown if a non-existing user is provided. %s is a user ID.
#, fuzzy, php-format
msgid "No such user \"%s\"."
-msgstr "Ne ekzistas tiu uzanto."
+msgstr "Ne ekzistas uzanto «%s»."
#. TRANS: Client exception thrown when post to collection fails with a 400 status.
#. TRANS: %1$s is a URL, %2$s is the status, %s$s is the fail reason.
@@ -7939,9 +7940,12 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s - %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s - %2$s"
+msgstr[1] "%1$s - %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7950,7 +7954,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "Nevalida markilo: \"%s\""
@@ -7962,9 +7966,12 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9537,7 +9544,6 @@ msgid "Edit people tag settings."
msgstr "Redakti profilan agordon"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Redakti"
@@ -9613,7 +9619,6 @@ msgid "People tags"
msgstr "Homoj"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Uzanto"
@@ -10378,8 +10383,3 @@ msgstr ""
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr "Vi rajtas entikedi nur abonanton aŭ abonaton."
diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po
index 572d3e3686..3c9e60a697 100644
--- a/locale/es/LC_MESSAGES/statusnet.po
+++ b/locale/es/LC_MESSAGES/statusnet.po
@@ -19,17 +19,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:00+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:09+0000\n"
"Language-Team: Spanish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: es\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -183,7 +183,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2299,7 +2299,6 @@ msgid "No tagger or ID."
msgstr "Ningún nombre de usuario o ID."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
msgstr "No existe ese usuario."
@@ -8032,9 +8031,12 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s - %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s - %2$s"
+msgstr[1] "%1$s - %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -8043,7 +8045,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "Etiqueta inválida: \"% s\""
@@ -8055,9 +8057,12 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9647,7 +9652,6 @@ msgid "Edit people tag settings."
msgstr "Editar configuración del perfil"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Editar"
@@ -9723,7 +9727,6 @@ msgid "People tags"
msgstr "Gente"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Usuario"
@@ -10492,10 +10495,3 @@ msgstr ""
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr ""
-#~ "Sólo puedes marcar a las personas a quienes estás suscrito o que están "
-#~ "suscritas a ti."
diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po
index 7e42caf351..b6e2b52a5d 100644
--- a/locale/fa/LC_MESSAGES/statusnet.po
+++ b/locale/fa/LC_MESSAGES/statusnet.po
@@ -18,8 +18,8 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:03+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:11+0000\n"
"Last-Translator: Ahmad Sufi Mahmudi\n"
"Language-Team: Persian \n"
"MIME-Version: 1.0\n"
@@ -28,9 +28,9 @@ msgstr ""
"X-Language-Code: fa\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -183,7 +183,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -7997,9 +7997,11 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s (%2$s)"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s (%2$s)"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -8008,7 +8010,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "نشان نادرست »%s«"
@@ -8020,9 +8022,11 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9594,7 +9598,6 @@ msgid "Edit people tag settings."
msgstr "ویرایش تنظیمات نمایه"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "ویرایش"
@@ -9671,7 +9674,6 @@ msgid "People tags"
msgstr "افراد"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "کاربر"
@@ -10430,10 +10432,3 @@ msgstr ""
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr ""
-#~ "شما تنها میتوانید افرادی را برچسبدار کنید که مشترک آنها هستید یا آنها "
-#~ "مشترک شما هستند."
diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po
index 6f1a5eb36f..407c8af993 100644
--- a/locale/fi/LC_MESSAGES/statusnet.po
+++ b/locale/fi/LC_MESSAGES/statusnet.po
@@ -16,17 +16,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:05+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:12+0000\n"
"Language-Team: Finnish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fi\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -182,7 +182,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2257,7 +2257,6 @@ msgid "No tagger or ID."
msgstr "Tunnusta tai ID:tä ei ole."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
msgstr "Käyttäjää ei ole."
@@ -7945,9 +7944,12 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s (%2$s)"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s (%2$s)"
+msgstr[1] "%1$s (%2$s)"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7956,7 +7958,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "Virheellinen tagi: \"%s\""
@@ -7968,9 +7970,12 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9554,7 +9559,6 @@ msgid "People tags"
msgstr "Henkilö"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Käyttäjä"
@@ -10328,10 +10332,3 @@ msgstr ""
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr ""
-#~ "Voit tagata ainoastaan ihmisiä, joita tilaat tai jotka tilaavat sinun "
-#~ "päivityksiäsi."
diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po
index 583f401c11..93c795e70b 100644
--- a/locale/fr/LC_MESSAGES/statusnet.po
+++ b/locale/fr/LC_MESSAGES/statusnet.po
@@ -23,17 +23,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:07+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:14+0000\n"
"Language-Team: French \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -189,7 +189,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2318,9 +2318,8 @@ msgid "No tagger or ID."
msgstr "Aucun pseudo ou ID."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
-msgstr "Utilisateur non trouvé."
+msgstr "Ceci n’est pas un utilisateur local."
#. TRANS: Client error displayed when reting to edit a tag that was not self-created.
#, fuzzy
@@ -8078,9 +8077,12 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s - %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s - %2$s"
+msgstr[1] "%1$s - %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -8089,7 +8091,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "Marque invalide : « %s »"
@@ -8101,9 +8103,12 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9701,7 +9706,6 @@ msgid "Edit people tag settings."
msgstr "Modifier les paramètres du profil"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Modifier"
@@ -9777,7 +9781,6 @@ msgid "People tags"
msgstr "Personnes"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Utilisateur"
@@ -10545,10 +10548,3 @@ msgstr "XML invalide, racine XRD manquante."
#, php-format
msgid "Getting backup from file '%s'."
msgstr "Obtention de la sauvegarde depuis le fichier « %s »."
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr ""
-#~ "Vous pouvez seulement marquer les personnes auxquelles vous êtes abonné"
-#~ "(e) ou qui sont abonnées à vous."
diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po
index 66a9112916..142b43441c 100644
--- a/locale/gl/LC_MESSAGES/statusnet.po
+++ b/locale/gl/LC_MESSAGES/statusnet.po
@@ -12,17 +12,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:09+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:15+0000\n"
"Language-Team: Galician \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: gl\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -175,7 +175,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -8079,9 +8079,12 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s - %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s - %2$s"
+msgstr[1] "%1$s - %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -8090,7 +8093,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "Etiqueta incorrecta: \"%s\""
@@ -8102,9 +8105,12 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9699,7 +9705,6 @@ msgid "Edit people tag settings."
msgstr "Modificar a configuración do perfil"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Modificar"
@@ -9776,7 +9781,6 @@ msgid "People tags"
msgstr "Xente"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Usuario"
@@ -10548,10 +10552,3 @@ msgstr ""
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr ""
-#~ "Só pode etiquetar a xente á que estea subscrito ou que estean subscritos "
-#~ "a vostede."
diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po
index f624390644..ca94a84373 100644
--- a/locale/hsb/LC_MESSAGES/statusnet.po
+++ b/locale/hsb/LC_MESSAGES/statusnet.po
@@ -11,18 +11,18 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:12+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:16+0000\n"
"Language-Team: Upper Sorbian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: hsb\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : (n%100==3 || "
"n%100==4) ? 2 : 3)\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -175,7 +175,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2228,9 +2228,8 @@ msgid "No tagger or ID."
msgstr "Žane přimjeno abo žadyn ID."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
-msgstr "Wužiwar njeeksistuje"
+msgstr "Njeje lokalny wužiwar."
#. TRANS: Client error displayed when reting to edit a tag that was not self-created.
#, fuzzy
@@ -7629,9 +7628,14 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s - %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s - %2$s"
+msgstr[1] "%1$s - %2$s"
+msgstr[2] "%1$s - %2$s"
+msgstr[3] "%1$s - %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7640,9 +7644,9 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
-msgstr "Njepłaćiwa taflička: \"%s\"."
+msgstr "Njepłaćiwa taflička: \"%s\""
#. TRANS: Error displayed if untagging a user fails.
#. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation).
@@ -7652,9 +7656,14 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+msgstr[3] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9159,7 +9168,6 @@ msgid "Edit people tag settings."
msgstr "Profilowe nastajenja wobdźěłać"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Wobdźěłać"
@@ -9233,7 +9241,6 @@ msgid "People tags"
msgstr "Ludźo"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Wužiwar"
diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po
index a573e74ab9..10c8c0d082 100644
--- a/locale/ia/LC_MESSAGES/statusnet.po
+++ b/locale/ia/LC_MESSAGES/statusnet.po
@@ -9,17 +9,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:13+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:18+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -160,28 +160,28 @@ msgstr "Profilo non existe."
#. TRANS: Client error displayed when referring to a non-exsting people tag.
#. TRANS: Client error displayed when referring to non-existing people tag.
#. TRANS: Client error displayed trying to reference a non-existing people tag.
-#, fuzzy
msgid "No such people tag."
-msgstr "Etiquetta non existe."
+msgstr "Iste etiquetta de persona non existe."
#. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile.
-#, fuzzy
msgid "You cannot tag an OMB 0.1 remote profile with this action."
-msgstr "Tu non pote subscriber te a un profilo remote OMB 0.1 con iste action."
+msgstr "Tu non pote etiquettar un profilo remote OMB 0.1 con iste action."
#. TRANS: Client error displayed when an unknown error occurs while tagging a user.
#. TRANS: %s is a username.
#, php-format
msgid "There was an unexpected error while tagging %s."
-msgstr ""
+msgstr "Un error inexpectate occurreva durante le etiquettage de %s."
#. TRANS: Client error displayed when an unknown error occurs while tagging a user.
#. TRANS: %s is a profile URL.
-#, php-format
+#, fuzzy, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
+"Un problema occurreva durante le etiquettage de %s. Le servitor remote "
+"probabilemente non respondeva correctemente. Per favor reproba plus tarde."
#. TRANS: Title after subscribing to a people tag.
#. TRANS: Page title when subscription succeeded.
@@ -775,63 +775,55 @@ msgstr "Le alias non pote esser identic al pseudonymo."
#. TRANS: Client error displayed when referring to a non-existing list.
#. TRANS: Client error displayed trying to perform an action related to a non-existing list.
#. TRANS: Client error displayed when referring to a non-existing list.
-#, fuzzy
msgid "List not found."
-msgstr "Usator non trovate."
+msgstr "Lista non trovate."
#. TRANS: Client error displayed when trying to update another user's list.
msgid "You cannot update lists that do not belong to you."
-msgstr ""
+msgstr "Tu non pote actualisar listas que non pertine a te."
#. TRANS: Client error displayed when an unknown error occurs updating a list.
#. TRANS: Client error displayed when an unknown error occurs viewing list members.
#. TRANS: Client error displayed when an unknown error occurs in the list subscribers action.
#. TRANS: Client error displayed when an unknown error occurs unsubscribing from a list.
-#, fuzzy
msgid "An error occured."
msgstr "Un error ha occurrite."
#. TRANS: Client error displayed when trying to delete another user's list.
msgid "You cannot delete lists that do not belong to you."
-msgstr ""
+msgstr "Tu non pote deler listas que non pertine a te."
#. TRANS: Client error displayed when referring to a non-list member.
-#, fuzzy
msgid "The specified user is not a member of this list."
-msgstr "Le usator non es membro del gruppo."
+msgstr "Le usator specificate non es membro de iste lista."
#. TRANS: Client error displayed when trying to add members to a list without having the right to do so.
-#, fuzzy
msgid "You are not allowed to add members to this list."
-msgstr "Tu non ha le permission de crear gruppos in iste sito."
+msgstr "Tu non ha le permission de adder membros a iste lista."
#. TRANS: Client error displayed when trying to modify list members without specifying them.
-#, fuzzy
msgid "You must specify a member."
-msgstr "Es necessari specificar un profilo."
+msgstr "Es necessari specificar un membro."
#. TRANS: Client error displayed when trying to remove members from a list without having the right to do so.
-#, fuzzy
msgid "You are not allowed to remove members from this list."
-msgstr "Tu non ha le permission de crear gruppos in iste sito."
+msgstr "Tu non ha le permission de remover membros de iste lista."
#. TRANS: Client error displayed when trying to remove a list member that is not part of a list.
msgid "The user you are trying to remove from the list is not a member."
-msgstr ""
+msgstr "Le usator que tu tenta remover de iste lista non es membro."
#. TRANS: Client error displayed when trying to create a list without a name.
-#, fuzzy
msgid "A list must have a name."
-msgstr "Message Atom debe esser un entrata Atom."
+msgstr "Un lista debe haber un nomine."
#. TRANS: Client error displayed when a membership check for a user is nagative.
msgid "The specified user is not a subscriber of this list."
-msgstr ""
+msgstr "Le usator specificate non es subscribite a iste lista."
#. TRANS: Client error displayed when trying to unsubscribe from a non-subscribed list.
-#, fuzzy
msgid "You are not subscribed to this list."
-msgstr "Tu non es subscribite a iste profilo."
+msgstr "Tu non es subscribite a iste lista."
#. TRANS: Client error displayed when uploading a media file has failed.
msgid "Upload failed."
@@ -1095,9 +1087,9 @@ msgstr "%1$s actualisationes favoritisate per %2$s / %3$s."
#. TRANS: Server error displayed whe trying to get a timeline fails.
#. TRANS: %s is the error message.
-#, fuzzy, php-format
+#, php-format
msgid "Could not generate feed for list - %s"
-msgstr "Non poteva crear indicio de identification pro %s"
+msgstr "Non poteva generar un syndication pro le lista. %s"
#. TRANS: Title for timeline of most recent mentions of a user.
#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname.
@@ -2255,68 +2247,65 @@ msgstr "Optiones salveguardate."
#. TRANS: %s is a tag.
#, php-format
msgid "Delete %s people tag"
-msgstr ""
+msgstr "Deler le etiquetta de persona \"%s\""
#. TRANS: Title for edit people tag page.
#. TRANS: %s is a tag.
#. TRANS: Form legend for people tag edit form.
#. TRANS: %s is a people tag.
-#, fuzzy, php-format
+#, php-format
msgid "Edit people tag %s"
-msgstr "Etiquetta de personas invalide: %s."
+msgstr "Modificar le etiquetta de persona \"%s\""
#. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID.
-#, fuzzy
msgid "No tagger or ID."
-msgstr "Nulle pseudonymo o ID."
+msgstr "Etiquettator o ID non specificate."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
-msgstr "Iste usator non existe."
+msgstr "Le usator non es local."
#. TRANS: Client error displayed when reting to edit a tag that was not self-created.
-#, fuzzy
msgid "You must be the creator of the tag to edit it."
-msgstr "Tu debe esser administrator pro modificar le gruppo."
+msgstr "Tu debe esser le creator del etiquetta pro poter modificar lo."
#. TRANS: Form instruction for edit people tag form.
-#, fuzzy
msgid "Use this form to edit the people tag."
-msgstr "Usa iste formulario pro modificar le gruppo."
+msgstr "Usa iste formulario pro modificar le etiquetta de persona."
#. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect.
-#, fuzzy
msgid "Delete aborted."
-msgstr "Deler nota"
+msgstr "Deletion abortate."
#. TRANS: Text in confirmation dialog for deleting a tag.
msgid ""
"Deleting this tag will permanantly remove all its subscription and "
"membership records. Do you still want to continue?"
msgstr ""
+"Si tu dele iste etiquetta, tote su datos de subscription e membrato essera "
+"permanentemente removite. Es tu secur de voler continuar?"
#. TRANS: Form validation error displayed if a given tag is invalid.
-#, fuzzy
msgid "Invalid tag."
-msgstr "Imagine invalide."
+msgstr "Etiquetta invalide."
#. TRANS: Form validation error displayed if a given tag is already present.
#. TRANS: %s is the already present tag.
-#, fuzzy, php-format
+#, php-format
msgid "You already have a tag named %s."
-msgstr "Tu ha ja repetite iste nota."
+msgstr "Tu ha jam un etiquetta con le nomine \"%s\"."
#. TRANS: Text in confirmation dialog for setting a tag from public to private.
msgid ""
"Setting a public tag as private will permanently remove all the existing "
"subscriptions to it. Do you still want to continue?"
msgstr ""
+"Si tu mitte un etiquetta public a private, tote le subscriptiones existente "
+"a illo essera permanentemente cancellate. Es tu secur de voler continuar?"
#. TRANS: TRANS: Server error displayed when updating a people tag fails.
-#, fuzzy
msgid "Could not update people tag."
-msgstr "Non poteva actualisar gruppo."
+msgstr "Non poteva actualisar le etiquetta de persona."
#. TRANS: Title for e-mail settings.
msgid "Email settings"
@@ -4068,15 +4057,15 @@ msgstr "Recerca de personas"
#. TRANS: Title for people tag page.
#. TRANS: %s is a tag.
-#, fuzzy, php-format
+#, php-format
msgid "Public people tag %s"
-msgstr "Chronologia public, pagina %d"
+msgstr "Etiquetta public de persona \"%s\""
#. TRANS: Title for people tag page.
#. TRANS: %1$s is a tag, %2$d is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "Public people tag %1$s, page %2$d"
-msgstr "Responsas a %1$s, pagina %2$d"
+msgstr "Etiquetta public de persona \"%1$s\", pagina %2$d"
#. TRANS: Message for anonymous users on people tag page.
#. TRANS: This message contains Markdown links in the form [description](link).
@@ -7845,9 +7834,12 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s e %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s e %2$s"
+msgstr[1] "%1$s e %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7856,9 +7848,9 @@ msgstr ", "
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
-msgstr "Etiquetta invalide: \"%s\"."
+msgstr "Etiquetta invalide: \"%s\""
#. TRANS: Error displayed if untagging a user fails.
#. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation).
@@ -7868,9 +7860,12 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9401,7 +9396,6 @@ msgid "Edit people tag settings."
msgstr "Modificar configuration de profilo."
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Modificar"
@@ -9473,7 +9467,6 @@ msgid "People tags"
msgstr "Personas"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Usator"
@@ -10215,10 +10208,3 @@ msgstr "XML invalide, radice XRD mancante."
#, php-format
msgid "Getting backup from file '%s'."
msgstr "Obtene copia de reserva ex file '%s'."
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr ""
-#~ "Tu pote solmente etiquettar personas a qui tu es subscribite o qui es "
-#~ "subscribite a te."
diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po
index 160de42a3b..e4d7f711c0 100644
--- a/locale/it/LC_MESSAGES/statusnet.po
+++ b/locale/it/LC_MESSAGES/statusnet.po
@@ -11,17 +11,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:16+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:19+0000\n"
"Language-Team: Italian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: it\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -178,7 +178,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2321,7 +2321,6 @@ msgid "No tagger or ID."
msgstr "Nessun soprannome o ID."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
msgstr "Utente inesistente."
@@ -8061,9 +8060,12 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s - %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s - %2$s"
+msgstr[1] "%1$s - %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -8072,7 +8074,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "Etichetta non valida: \"%s\""
@@ -8084,9 +8086,12 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9677,7 +9682,6 @@ msgid "Edit people tag settings."
msgstr "Modifica impostazioni del profilo"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Modifica"
@@ -9754,7 +9758,6 @@ msgid "People tags"
msgstr "Persone"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Utente"
@@ -10524,10 +10527,3 @@ msgstr ""
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr ""
-#~ "Puoi etichettare sole le persone di cui hai un abbonamento o che sono "
-#~ "abbonate a te."
diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po
index 6134bc735b..83a641589a 100644
--- a/locale/ja/LC_MESSAGES/statusnet.po
+++ b/locale/ja/LC_MESSAGES/statusnet.po
@@ -14,17 +14,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:18+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:21+0000\n"
"Language-Team: Japanese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ja\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -179,7 +179,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2314,9 +2314,8 @@ msgid "No tagger or ID."
msgstr "ニックネームがありません。"
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
-msgstr "そのようなユーザはいません。"
+msgstr "ローカルユーザではありません。"
#. TRANS: Client error displayed when reting to edit a tag that was not self-created.
#, fuzzy
@@ -8061,9 +8060,11 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s、ページ %2$d"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s、ページ %2$d"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -8072,7 +8073,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "不正なタグ: \"%s\""
@@ -8084,9 +8085,11 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9637,7 +9640,6 @@ msgid "Edit people tag settings."
msgstr "プロファイル設定編集"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "編集"
@@ -9713,7 +9715,6 @@ msgid "People tags"
msgstr "人々"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "ユーザ"
@@ -10470,10 +10471,3 @@ msgstr ""
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr ""
-#~ "あなたはフォローされる人々にタグ付けをすることができるだけか、あなたをフォ"
-#~ "ローされているか。"
diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po
index f4d3d08676..453bb15ebf 100644
--- a/locale/ka/LC_MESSAGES/statusnet.po
+++ b/locale/ka/LC_MESSAGES/statusnet.po
@@ -9,17 +9,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:20+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:22+0000\n"
"Language-Team: Georgian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ka\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -173,7 +173,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -7971,9 +7971,11 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s - %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s - %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7982,7 +7984,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "არასწორი სანიშნე: \"%s\""
@@ -7994,9 +7996,11 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9547,7 +9551,6 @@ msgid "Edit people tag settings."
msgstr "პროფილის პარამეტრების რედაქტირება"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "რედაქტირება"
@@ -9624,7 +9627,6 @@ msgid "People tags"
msgstr "ადამიანები"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "მომხმარებელი"
@@ -10384,10 +10386,3 @@ msgstr ""
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr ""
-#~ "ადამიანების მონიშვნა შესაძლებელია მხოლოდ მაშინ, როდესაც ან თქვენ გაქვთ "
-#~ "გამოწერილი მისი განახლებები, ან იმას."
diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po
index bf8dd38962..ea25b41170 100644
--- a/locale/ko/LC_MESSAGES/statusnet.po
+++ b/locale/ko/LC_MESSAGES/statusnet.po
@@ -11,17 +11,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:22+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:24+0000\n"
"Language-Team: Korean \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ko\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -179,7 +179,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2230,7 +2230,6 @@ msgid "No tagger or ID."
msgstr "별명이나 아이디가 없습니다."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
msgstr "해당 이용자가 없습니다."
@@ -7559,13 +7558,13 @@ msgstr "이 메소드를 사용하지 마십시오!"
#. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname.
#, php-format
msgid "Timeline for people tagged #%1$s by %2$s"
-msgstr ""
+msgstr "%2$s님의 #%1$s 태그가 붙은 사람들에 대한 타임라인"
#. TRANS: Message is used as a subtitle in atom list notice feed.
#. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name.
-#, fuzzy, php-format
+#, php-format
msgid "Updates from %1$s's %2$s people tag on %3$s!"
-msgstr "%2$s 사이트의 %1$s의 업데이트!"
+msgstr "%3$s 사이트의 %1$s님의 %2$s 사람들의 태그 업데이트"
#. TRANS: Title.
msgid "Notices where this attachment appears"
@@ -7668,9 +7667,8 @@ msgstr ""
"글 개수: %3$s"
#. TRANS: Error message text shown when a favorite could not be set because it has already been favorited.
-#, fuzzy
msgid "Could not create favorite: Already favorited."
-msgstr "좋아하는 글을 만들 수 있습니다. 이미 좋아함 표시했습니다."
+msgstr "좋아하는 글을 만들 수 없습니다. 이미 좋아함 표시했습니다."
#. TRANS: Text shown when a notice has been marked as favourite successfully.
msgid "Notice marked as fave."
@@ -7692,36 +7690,40 @@ msgstr "%1$s님이 %2$s 그룹을 떠났습니다"
#. TRANS: %1$s is the tagged user, %2$s is the error message (no punctuation).
#, php-format
msgid "Error tagging %1$s: %2$s"
-msgstr ""
+msgstr "%1$s 태그 붙이는데 오류: %2$s"
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s - %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s 사용자에 %2$s 태그를 붙였습니다"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
msgid ", "
-msgstr ""
+msgstr ", "
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
-msgstr "올바르지 않은 태그: \"%s\"."
+msgstr "올바르지 않은 태그: \"%s\""
#. TRANS: Error displayed if untagging a user fails.
#. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation).
#, php-format
msgid "Error untagging %1$s: %2$s"
-msgstr ""
+msgstr "%1$s 태그 지우는데 오류: %2$s"
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
-#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
+#, fuzzy, php-format
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] "%1$s 사용자에서 다음 태그를 제거했습니다: %2$s."
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -7752,7 +7754,7 @@ msgstr "홈페이지: %s"
#. TRANS: Whois output. %s is the bio information of the queried user.
#, php-format
msgid "About: %s"
-msgstr "자기소개: %s"
+msgstr "정보: %s"
#. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server).
#. TRANS: %s is a remote profile.
@@ -7761,8 +7763,8 @@ msgid ""
"%s is a remote profile; you can only send direct messages to users on the "
"same server."
msgstr ""
-"%s 프로필은 원격입니다. 같은ㅇ 서버에 있는 사용자에게만 직접 메시지를 보낼 "
-"수 있습니다."
+"%s 프로필은 원격입니다. 같은 서버에 있는 사용자에게만 직접 메시지를 보낼 수 "
+"있습니다."
#. TRANS: Message given if content is too long. %1$sd is used for plural.
#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters.
@@ -7836,7 +7838,7 @@ msgstr "명령이 아직 구현되지 않았습니다."
#. TRANS: Text shown when issuing the command "off" successfully.
msgid "Notification off."
-msgstr "알림 끄기.."
+msgstr "알림 끄기."
#. TRANS: Error text shown when the command "off" fails for an unknown reason.
msgid "Can't turn off notification."
@@ -7932,16 +7934,14 @@ msgid "lists the groups you have joined"
msgstr "가입한 그룹 목록을 표시합니다"
#. TRANS: Help message for IM/SMS command "tag".
-#, fuzzy
msgctxt "COMMANDHELP"
msgid "tag a user"
-msgstr "이용자 태그"
+msgstr "이용자에 태그를 붙입니다"
#. TRANS: Help message for IM/SMS command "untag".
-#, fuzzy
msgctxt "COMMANDHELP"
msgid "untag a user"
-msgstr "이용자 태그"
+msgstr "이용자의 태그를 지웁니다"
#. TRANS: Help message for IM/SMS command "subscriptions".
msgctxt "COMMANDHELP"
@@ -8267,10 +8267,9 @@ msgstr[0] ""
#. TRANS: Checkbox field title on group edit form to mark a group private.
msgid ""
"New members must be approved by admin and all posts are forced to be private."
-msgstr ""
+msgstr "새 회원은 관리자가 허용해야 하고 모든 글은 비밀이 됩니다."
#. TRANS: Indicator in group members list that this user is a group administrator.
-#, fuzzy
msgctxt "GROUPADMIN"
msgid "Admin"
msgstr "관리자"
@@ -8285,19 +8284,19 @@ msgstr "그룹"
#, php-format
msgctxt "TOOLTIP"
msgid "%s group"
-msgstr ""
+msgstr "%s 그룹"
#. TRANS: Menu item in the group navigation page.
msgctxt "MENU"
msgid "Members"
-msgstr "구성원"
+msgstr "회원"
#. TRANS: Tooltip for menu item in the group navigation page.
#. TRANS: %s is the nickname of the group.
#, php-format
msgctxt "TOOLTIP"
msgid "%s group members"
-msgstr ""
+msgstr "%s 그룹 회원"
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
#. TRANS: %d is the number of pending members.
@@ -8309,22 +8308,22 @@ msgstr[0] ""
#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators.
#. TRANS: %s is the nickname of the group.
-#, fuzzy, php-format
+#, php-format
msgctxt "TOOLTIP"
msgid "%s pending members"
-msgstr "%s 그룹 회원"
+msgstr "%s 밀린 회원"
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
msgctxt "MENU"
msgid "Blocked"
-msgstr ""
+msgstr "차단"
#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators.
#. TRANS: %s is the nickname of the group.
#, php-format
msgctxt "TOOLTIP"
msgid "%s blocked users"
-msgstr ""
+msgstr "%s 차단 사용자"
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
#. TRANS: Menu item in primary navigation panel.
@@ -8337,7 +8336,7 @@ msgstr "관리"
#, php-format
msgctxt "TOOLTIP"
msgid "Edit %s group properties"
-msgstr ""
+msgstr "%s 그룹 속성 편집"
#. TRANS: Menu item in the group navigation page. Only shown for group administrators.
msgctxt "MENU"
@@ -8349,36 +8348,36 @@ msgstr "로고"
#, php-format
msgctxt "TOOLTIP"
msgid "Add or edit %s logo"
-msgstr ""
+msgstr "%s 로고 추가 또는 편집"
#. TRANS: Tooltip for menu item in the group navigation page. Only shown for group administrators.
#. TRANS: %s is the nickname of the group.
#, php-format
msgctxt "TOOLTIP"
msgid "Add or edit %s design"
-msgstr ""
+msgstr "%s 디자인 추가 또는 편집"
#. TRANS: Group actions header (h2). Text hidden by default.
msgid "Group actions"
-msgstr "그룹 행동"
+msgstr "그룹 동작"
#. TRANS: Title for groups with the most members section.
msgid "Groups with most members"
-msgstr "가장 많은 회원수를 가진 그룹들"
+msgstr "가장 회원수가 많은 그룹"
#. TRANS: Title for groups with the most posts section.
msgid "Groups with most posts"
-msgstr "가장 많은 게시글이 있는 그룹들"
+msgstr "가장 게시글이 많은 그룹"
#. TRANS: Title for group tag cloud section.
#. TRANS: %s is a group name.
#, php-format
msgid "Tags in %s group's notices"
-msgstr "%s 그룹 게시글의 태그"
+msgstr "%s 그룹의 글에 있는 태그"
#. TRANS: Client exception 406
msgid "This page is not available in a media type you accept"
-msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다."
+msgstr "이 페이지는 귀하가 승인한 미디어 형식에서는 이용할 수 없습니다."
#. TRANS: Exception thrown when trying to upload an unsupported image file format.
msgid "Unsupported image file format."
@@ -8386,9 +8385,9 @@ msgstr "지원하지 않는 그림 파일 형식입니다."
#. TRANS: Exception thrown when too large a file is uploaded.
#. TRANS: %s is the maximum file size, for example "500b", "10kB" or "2MB".
-#, fuzzy, php-format
+#, php-format
msgid "That file is too big. The maximum file size is %s."
-msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다."
+msgstr "파일이 너무 큽니다. 최대 크기는 %s입니다."
#. TRANS: Exception thrown when uploading an image and that action could not be completed.
msgid "Partial upload."
@@ -8408,16 +8407,16 @@ msgid "Unknown file type"
msgstr "알 수 없는 종류의 파일입니다"
#. TRANS: Number of megabytes. %d is the number.
-#, fuzzy, php-format
+#, php-format
msgid "%dMB"
msgid_plural "%dMB"
-msgstr[0] "MB"
+msgstr[0] ""
#. TRANS: Number of kilobytes. %d is the number.
-#, fuzzy, php-format
+#, php-format
msgid "%dkB"
msgid_plural "%dkB"
-msgstr[0] "kB"
+msgstr[0] ""
#. TRANS: Number of bytes. %d is the number.
#, php-format
@@ -8436,6 +8435,10 @@ msgid ""
"user is not you, or if you did not request this confirmation, just ignore "
"this message."
msgstr ""
+"%2$s 사이트의 \"%1$s\" 사용자가 나의 %3$s 이름이 자기 사이트 소유라고 주장했"
+"습니다. 이 말이 맞으면 다음 URL을 열어 확인하십시오: %4$s . (이 URL을 열 수 "
+"없으면 URL을 복사해 웹 브라우저의 주소 창에 붙여넣으십시오.) 이 사용자가 내 "
+"계정이 아니거나 이런 요청을 한 적이 없으면, 이 메시지를 무시하십시오."
#. TRANS: Exception thrown when trying to deliver a notice to an unknown inbox.
#. TRANS: %d is the unknown inbox ID (number).
@@ -8452,13 +8455,11 @@ msgid "Transport cannot be null."
msgstr ""
#. TRANS: Button text for joining a group.
-#, fuzzy
msgctxt "BUTTON"
msgid "Join"
msgstr "가입"
#. TRANS: Button text on form to leave a group.
-#, fuzzy
msgctxt "BUTTON"
msgid "Leave"
msgstr "떠나기"
@@ -9159,7 +9160,6 @@ msgid "Edit people tag settings."
msgstr "프로필 설정 편집."
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "편집"
@@ -9236,9 +9236,8 @@ msgid "People tags"
msgstr "사람들"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
-msgstr "이용자"
+msgstr "사용자"
#. TRANS: Menu item in personal group navigation menu.
#, fuzzy
@@ -9996,8 +9995,3 @@ msgstr ""
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr "내가 구독하거나 나를 구독한 사람만 태그를 붙일 수 있습니다."
diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po
index abdbaffb89..46028ffbb8 100644
--- a/locale/mk/LC_MESSAGES/statusnet.po
+++ b/locale/mk/LC_MESSAGES/statusnet.po
@@ -10,17 +10,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:24+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:25+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -163,29 +163,28 @@ msgstr "Нема таков профил."
#. TRANS: Client error displayed when referring to a non-exsting people tag.
#. TRANS: Client error displayed when referring to non-existing people tag.
#. TRANS: Client error displayed trying to reference a non-existing people tag.
-#, fuzzy
msgid "No such people tag."
-msgstr "Нема таква ознака."
+msgstr "Нема таква ознака за луѓе."
#. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile.
-#, fuzzy
msgid "You cannot tag an OMB 0.1 remote profile with this action."
-msgstr ""
-"Не можете да се претплатите на OMB 0.1 далечински профил со ова дејство."
+msgstr "Не можете да означите далечински профил OMB 0.1 со ова дејство."
#. TRANS: Client error displayed when an unknown error occurs while tagging a user.
#. TRANS: %s is a username.
#, php-format
msgid "There was an unexpected error while tagging %s."
-msgstr ""
+msgstr "Се појави неочекувана грешка при означувањето на %s."
#. TRANS: Client error displayed when an unknown error occurs while tagging a user.
#. TRANS: %s is a profile URL.
-#, php-format
+#, fuzzy, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
+"Се појави проблем при означувањето на %s.Веројатно далечинскиот опслужувач "
+"не одговара како што треба. Обидете се повторно."
#. TRANS: Title after subscribing to a people tag.
#. TRANS: Page title when subscription succeeded.
@@ -780,63 +779,55 @@ msgstr "Алијасот не може да биде ист како прека
#. TRANS: Client error displayed when referring to a non-existing list.
#. TRANS: Client error displayed trying to perform an action related to a non-existing list.
#. TRANS: Client error displayed when referring to a non-existing list.
-#, fuzzy
msgid "List not found."
-msgstr "Корисникот не е пронајден."
+msgstr "Списокот не е пронајден."
#. TRANS: Client error displayed when trying to update another user's list.
msgid "You cannot update lists that do not belong to you."
-msgstr ""
+msgstr "Не можете да подновувате списоци што не се Ваши."
#. TRANS: Client error displayed when an unknown error occurs updating a list.
#. TRANS: Client error displayed when an unknown error occurs viewing list members.
#. TRANS: Client error displayed when an unknown error occurs in the list subscribers action.
#. TRANS: Client error displayed when an unknown error occurs unsubscribing from a list.
-#, fuzzy
msgid "An error occured."
msgstr "Се појави грешка."
#. TRANS: Client error displayed when trying to delete another user's list.
msgid "You cannot delete lists that do not belong to you."
-msgstr ""
+msgstr "Не можете да бришете списоци што не се Ваши."
#. TRANS: Client error displayed when referring to a non-list member.
-#, fuzzy
msgid "The specified user is not a member of this list."
-msgstr "Корисникот не членува во групата."
+msgstr "Наведениот корисник не членува во списоков."
#. TRANS: Client error displayed when trying to add members to a list without having the right to do so.
-#, fuzzy
msgid "You are not allowed to add members to this list."
-msgstr "Не Ви е дозволено да создавате групи на ова мреж. место."
+msgstr "Не Ви е дозволено да додавате членови во списоков."
#. TRANS: Client error displayed when trying to modify list members without specifying them.
-#, fuzzy
msgid "You must specify a member."
-msgstr "Мора да наведете профил."
+msgstr "Мора да наведете член."
#. TRANS: Client error displayed when trying to remove members from a list without having the right to do so.
-#, fuzzy
msgid "You are not allowed to remove members from this list."
-msgstr "Не Ви е дозволено да создавате групи на ова мреж. место."
+msgstr "Не Ви е дозволено да отстранувате членови од списоков."
#. TRANS: Client error displayed when trying to remove a list member that is not part of a list.
msgid "The user you are trying to remove from the list is not a member."
-msgstr ""
+msgstr "Корисникот што сакате да го отстраните од списокот не е член."
#. TRANS: Client error displayed when trying to create a list without a name.
-#, fuzzy
msgid "A list must have a name."
-msgstr "Забелешката преку Atom мора да биде Atom-ставка."
+msgstr "Списокот мора да има назив."
#. TRANS: Client error displayed when a membership check for a user is nagative.
msgid "The specified user is not a subscriber of this list."
-msgstr ""
+msgstr "Наведениот корисник не е претплатен на списоков."
#. TRANS: Client error displayed when trying to unsubscribe from a non-subscribed list.
-#, fuzzy
msgid "You are not subscribed to this list."
-msgstr "Не сте претплатени на тој профил."
+msgstr "Не сте претплатени на списоков."
#. TRANS: Client error displayed when uploading a media file has failed.
msgid "Upload failed."
@@ -1099,9 +1090,9 @@ msgstr "Подновувања на %1$s бендисани од %2$s / %3$s."
#. TRANS: Server error displayed whe trying to get a timeline fails.
#. TRANS: %s is the error message.
-#, fuzzy, php-format
+#, php-format
msgid "Could not generate feed for list - %s"
-msgstr "Не можам да создадам најавен жетон за"
+msgstr "Не можам да создадам канал за списокот - %s"
#. TRANS: Title for timeline of most recent mentions of a user.
#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname.
@@ -2256,68 +2247,65 @@ msgstr "Нагодувањата се зачувани."
#. TRANS: %s is a tag.
#, php-format
msgid "Delete %s people tag"
-msgstr ""
+msgstr "Бришење на ознакта за луѓе %s"
#. TRANS: Title for edit people tag page.
#. TRANS: %s is a tag.
#. TRANS: Form legend for people tag edit form.
#. TRANS: %s is a people tag.
-#, fuzzy, php-format
+#, php-format
msgid "Edit people tag %s"
-msgstr "Не е важечка ознака за луѓе: %s."
+msgstr "Уредување на ознаката за луѓе %s"
#. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID.
-#, fuzzy
msgid "No tagger or ID."
-msgstr "Нема прекар или ID."
+msgstr "Нема означувач или назнака."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
-msgstr "Нема таков корисник."
+msgstr "Не е локален корисник."
#. TRANS: Client error displayed when reting to edit a tag that was not self-created.
-#, fuzzy
msgid "You must be the creator of the tag to edit it."
-msgstr "Мора да сте администратор за да можете да ја уредите групата."
+msgstr "Мора да сте создавачот на ознаката за да можете да ја уредувате."
#. TRANS: Form instruction for edit people tag form.
-#, fuzzy
msgid "Use this form to edit the people tag."
-msgstr "ОБразецов служи за уредување на групата."
+msgstr "ОБразецов служи за уредување на ознаката за луѓе."
#. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect.
-#, fuzzy
msgid "Delete aborted."
-msgstr "Избриши забелешка"
+msgstr "Бришењето е откажано."
#. TRANS: Text in confirmation dialog for deleting a tag.
msgid ""
"Deleting this tag will permanantly remove all its subscription and "
"membership records. Do you still want to continue?"
msgstr ""
+"Ако ја избришете ознакава, тогаш трајно ќе ја отстраните и сета нејзина "
+"евиденција за претплати и членства. Дали сакате да продолжите?"
#. TRANS: Form validation error displayed if a given tag is invalid.
-#, fuzzy
msgid "Invalid tag."
-msgstr "Неважечка слика."
+msgstr "Неважечка ознака."
#. TRANS: Form validation error displayed if a given tag is already present.
#. TRANS: %s is the already present tag.
-#, fuzzy, php-format
+#, php-format
msgid "You already have a tag named %s."
-msgstr "Веќе ја имате повторено таа забелешка."
+msgstr "Веќе имате ознака по име %s."
#. TRANS: Text in confirmation dialog for setting a tag from public to private.
msgid ""
"Setting a public tag as private will permanently remove all the existing "
"subscriptions to it. Do you still want to continue?"
msgstr ""
+"Ако наместите јавна ознака како приватна, со тоа трајно ќе ги избришете и "
+"сите нејзини постоечки претплати. Дали сакате да продолжите?"
#. TRANS: TRANS: Server error displayed when updating a people tag fails.
-#, fuzzy
msgid "Could not update people tag."
-msgstr "Не можев да ја подновам групата."
+msgstr "Не можев да ја подновам ознаката за луѓе."
#. TRANS: Title for e-mail settings.
msgid "Email settings"
@@ -4080,100 +4068,96 @@ msgstr "Пребарување на луѓе"
#. TRANS: Title for people tag page.
#. TRANS: %s is a tag.
-#, fuzzy, php-format
+#, php-format
msgid "Public people tag %s"
-msgstr "Јавна историја, стр. %d"
+msgstr "Јавна ознака за луѓе %s"
#. TRANS: Title for people tag page.
#. TRANS: %1$s is a tag, %2$d is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "Public people tag %1$s, page %2$d"
-msgstr "Одговори на %1$s, стр. %2$d"
+msgstr "Јавна ознака за луѓе %1$s, страница %2$d"
#. TRANS: Message for anonymous users on people tag page.
#. TRANS: This message contains Markdown links in the form [description](link).
-#, fuzzy, php-format
+#, php-format
msgid ""
"People tags are how you sort similar people on %%site.name%%, a [micro-"
"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the "
"Free Software [StatusNet](http://status.net/) tool. You can then easily keep "
"track of what they are doing by subscribing to the tag's timeline."
msgstr ""
-"**%s** е корисничка група на %%%%site.name%%%%, мрежно место за "
-"[микроблогирање](http://mk.wikipedia.org/wiki/Микроблогирање) заснована на "
-"слободната програмска алатка [StatusNet](http://status.net/). Нејзините "
-"членови си разменуваат кратки пораки за нивниот живот и интереси. "
+"Ознаките за луѓе служат за подредување на слични лица на %%site.name%%, "
+"служба за [микроблогирање](http://mk.wikipedia.org/wiki/Микроблогирање) што "
+"работи на слободната програмска алатка [StatusNet](http://status.net/). "
+"Претплаќајќи се на хронологијата на ознаката ќе можете лесно да следите што "
+"прават лицата."
#. TRANS: Client error displayed when a tagger is expected but not provided.
-#, fuzzy
msgid "No tagger."
-msgstr "Нема таква ознака."
+msgstr "Нема означувач."
#. TRANS: Title for list of people tagged by the user with a tag.
#. TRANS: %1$s is a tag, %2$s is a username.
#. TRANS: Header on show profile tag page.
#. TRANS: %1$s is a people tag, %2$s is a tagger's nickname.
-#, fuzzy, php-format
+#, php-format
msgid "People tagged %1$s by %2$s"
-msgstr "Одговори на %1$s на %2$s."
+msgstr "Луѓе означени со %1$s од %2$s"
#. TRANS: Title for list of people tagged by the user with a tag.
#. TRANS: %1$s is a tag, %2$s is a username, %2$s is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "People tagged %1$s by %2$s, page %3$d"
-msgstr "Одговори на %1$s, стр. %2$d"
+msgstr "Луѓе означени со %1$s од %2$s, страница %3$d"
#. TRANS: Addition in tag membership list for creator of a tag.
#. TRANS: Addition in tag subscribers list for creator of a tag.
-#, fuzzy
msgid "Creator"
-msgstr "Создадено"
+msgstr "Создавач"
#. TRANS: Title for people tags by a user page for a private tag.
-#, fuzzy
msgid "Private people tags by you"
-msgstr "ги наведува лицата што Ве следат"
+msgstr "Приватни ознаки на луѓе поставени од Вас"
#. TRANS: Title for people tags by a user page for a public tag.
-#, fuzzy
msgid "Public people tags by you"
-msgstr "Јавен облак од ознаки"
+msgstr "Јавни ознаки на луѓе поставени од Вас"
#. TRANS: Title for people tags by a user page.
#. TRANS: Page notice.
msgid "People tags by you"
-msgstr ""
+msgstr "Ознаки на луѓе поставени од Вас"
#. TRANS: Title for people tags by a user page.
#. TRANS: %s is a user nickname.
#. TRANS: Page notice. %s is a tagger's nickname.
#. TRANS: Menu item title in personal group navigation menu.
#. TRANS: %s is a username.
-#, fuzzy, php-format
+#, php-format
msgid "People tags by %s"
-msgstr "Повторувања на %s"
+msgstr "Ознаки на луѓе од %s"
#. TRANS: Title for people tags by a user page.
#. TRANS: %1$s is a user nickname, %2$d is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "People tags by %1$s, page %2$d"
-msgstr "Одговори на %1$s, стр. %2$d"
+msgstr "Ознаки на луѓе од %1$s, страница %2$d"
#. TRANS: Client error displayed when trying view another user's private people tags.
msgid "You cannot view others' private people tags"
-msgstr ""
+msgstr "Не можете да гледате туѓи приватни ознаки."
#. TRANS: Mode selector label.
-#, fuzzy
msgid "Mode"
-msgstr "Модерирај"
+msgstr "Режим"
#. TRANS: Link text to show people tags for user %s.
#. TRANS: Title for page that displays which people tags a user has been tagged with.
#. TRANS: %s is a profile name.
-#, fuzzy, php-format
+#, php-format
msgid "People tags for %s"
-msgstr "Повторувања на %s"
+msgstr "Ознаки на луѓе за %s"
#. TRANS: Fieldset legend.
#. TRANS: Fieldset legend on gallery action page.
@@ -4182,18 +4166,16 @@ msgstr "Одберете ознака за филтрирање"
#. TRANS: Checkbox title.
msgid "Show private tags."
-msgstr ""
+msgstr "Прикажи приватни ознаки."
#. TRANS: Checkbox label to show public tags.
-#, fuzzy
msgctxt "LABEL"
msgid "Public"
-msgstr "Јавна"
+msgstr "Јавни"
#. TRANS: Checkbox title.
-#, fuzzy
msgid "Show public tags."
-msgstr "Нема таква ознака."
+msgstr "Прикажи јавни ознаки."
#. TRANS: Submit button text for tag filter form.
#. TRANS: Submit button text on gallery action page.
@@ -4204,7 +4186,7 @@ msgstr "Оди"
#. TRANS: Message displayed for anonymous users on page that displays people tags by a user.
#. TRANS: This message contains Markdown links in the form [description](links).
#. TRANS: %s is a tagger nickname.
-#, fuzzy, php-format
+#, php-format
msgid ""
"These are people tags created by **%s**. People tags are how you sort "
"similar people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia."
@@ -4212,27 +4194,27 @@ msgid ""
"(http://status.net/) tool. You can easily keep track of what they are doing "
"by subscribing to the tag's timeline."
msgstr ""
-"**%s** е корисничка група на %%%%site.name%%%%, мрежно место за "
-"[микроблогирање](http://mk.wikipedia.org/wiki/Микроблогирање) заснована на "
-"слободната програмска алатка [StatusNet](http://status.net/). Нејзините "
-"членови си разменуваат кратки пораки за нивниот живот и интереси. "
+"Ова се ознаки за луѓе создадени од **%s**. Ознаките за луѓе служат за "
+"подредување на слични лица на %%%%site.name%%%%, служба за [микроблогирање]"
+"(http://mk.wikipedia.org/wiki/Микроблогирање) што работи на слободната "
+"програмска алатка [StatusNet](http://status.net/). Претплаќајќи се на "
+"хронологијата на ознаката ќе можете лесно да следите што прават лицата."
#. TRANS: Message displayed on page that displays people tags by a user when there are none.
#. TRANS: This message contains Markdown links in the form [description](links).
#. TRANS: %s is a tagger nickname.
-#, fuzzy, php-format
+#, php-format
msgid "%s has not created any [people tags](%%%%doc.tags%%%%) yet."
-msgstr ""
-"Сè уште некој нема објавено забелешка со [тарабна ознака](%%doc.tags%%)."
+msgstr "%s сè уште нема создадено никакви [ознаки за луѓе](%%%%doc.tags%%%%)."
-#, fuzzy, php-format
+#, php-format
msgid "People tags for %1$s, page %2$d"
-msgstr "Одговори на %1$s, стр. %2$d"
+msgstr "Ознаки за луѓе за %1$s, страница %2$d"
#. TRANS: Message displayed for anonymous users on page that displays people tags for a user.
#. TRANS: This message contains Markdown links in the form [description](links).
#. TRANS: %s is a tagger nickname.
-#, fuzzy, php-format
+#, php-format
msgid ""
"These are people tags for **%s**. People tags are how you sort similar "
"people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/"
@@ -4240,46 +4222,47 @@ msgid ""
"net/) tool. You can easily keep track of what they are doing by subscribing "
"to the tag's timeline."
msgstr ""
-"**%s** е корисничка група на %%%%site.name%%%%, мрежно место за "
-"[микроблогирање](http://mk.wikipedia.org/wiki/Микроблогирање) заснована на "
-"слободната програмска алатка [StatusNet](http://status.net/). Нејзините "
-"членови си разменуваат кратки пораки за нивниот живот и интереси. "
+"Ова се ознаките за луѓе за **%s**. Ознаките за луѓе служат за подредување на "
+"слични лица на %%%%site.name%%%%, служба за [микроблогирање](http://mk."
+"wikipedia.org/wiki/Микроблогирање) што работи на слободната програмска "
+"алатка [StatusNet](http://status.net/). Претплаќајќи се на хронологијата на "
+"ознаката ќе можете лесно да следите што прават лицата."
#. TRANS: Message displayed on page that displays people tags for a user when there are none.
#. TRANS: This message contains Markdown links in the form [description](links).
#. TRANS: %s is a tagger nickname.
#, php-format
msgid "%s has not been [tagged](%%%%doc.tags%%%%) by anyone yet."
-msgstr ""
+msgstr "%s сè уште не е [означен(а)](%%%%doc.tags%%%%) од никого."
#. TRANS: Page title for list of people tag subscribers.
#. TRANS: %1$s is a tag, %2$s is a user nickname.
#, php-format
msgid "Subscribers of people tagged %1$s by %2$s"
-msgstr ""
+msgstr "Претплатници на луѓе означени со %1$s од %2$s"
#. TRANS: Page title for list of people tag subscribers.
#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "Subscribers of people tagged %1$s by %2$s, page %3$d"
-msgstr "Забелешки на %1$s означени со %2$s, страница %3$d"
+msgstr "Претплатници на луѓе означени со %1$sод %2$s, страница %3$d"
#. TRANS: Title for page that displays people tags subscribed to by a user.
#. TRANS: %s is a profile nickname.
-#, fuzzy, php-format
+#, php-format
msgid "People tags subscriptions by %s"
-msgstr "Луѓе претплатени на %s."
+msgstr "Ознаки за луѓе на коишто се има претплатено %s."
#. TRANS: Title for page that displays people tags subscribed to by a user.
#. TRANS: %1$s is a profile nickname, %2$d is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "People tags subscriptions by %1$s, page %2$d"
-msgstr "Претплати на %1$s, стр. %2$d"
+msgstr "Претплати на ознаки за луѓе на %1$s, стр. %2$d"
#. TRANS: Message displayed for anonymous users on page that displays people tags subscribed to by a user.
#. TRANS: This message contains Markdown links in the form [description](links).
#. TRANS: %s is a profile nickname.
-#, fuzzy, php-format
+#, php-format
msgid ""
"These are people tags subscribed to by **%s**. People tags are how you sort "
"similar people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia."
@@ -4287,10 +4270,11 @@ msgid ""
"(http://status.net/) tool. You can easily keep track of what they are doing "
"by subscribing to the tag's timeline."
msgstr ""
-"**%s** е корисничка група на %%%%site.name%%%%, мрежно место за "
-"[микроблогирање](http://mk.wikipedia.org/wiki/Микроблогирање) заснована на "
-"слободната програмска алатка [StatusNet](http://status.net/). Нејзините "
-"членови си разменуваат кратки пораки за нивниот живот и интереси. "
+"Ова се ознаки за луѓе на коишто се има претплатено **%s**. Ознаките за луѓе "
+"служат за подредување на слични лица на %%%%site.name%%%%, служба за "
+"[микроблогирање](http://mk.wikipedia.org/wiki/Микроблогирање) што работи на "
+"слободната програмска алатка [StatusNet](http://status.net/). Претплаќајќи "
+"се на хронологијата на ознаката ќе можете лесно да следите што прават лицата."
#. TRANS: Page title for AJAX form return when a disabling a plugin.
msgctxt "plugin"
@@ -4359,17 +4343,16 @@ msgstr ""
#. TRANS: %s is a field name.
#, php-format
msgid "Unidentified field %s."
-msgstr ""
+msgstr "Непрепознаено поле %s."
#. TRANS: Page title.
-#, fuzzy
msgctxt "TITLE"
msgid "Search results"
-msgstr "Пребарај по мрежното место"
+msgstr "Резултати од пребарувањето"
#. TRANS: Error message in case a search is shorter than three characters.
msgid "The search string must be at least 3 characters long."
-msgstr ""
+msgstr "Низата во пребарувањето мора да има барем 3 знака."
#. TRANS: Page title for profile settings.
msgid "Profile settings"
@@ -4643,49 +4626,45 @@ msgstr ""
"[StatusNet](http://status.net/)."
#. TRANS: Title for page with public people tag cloud.
-#, fuzzy
msgid "Public people tag cloud"
-msgstr "Јавен облак од ознаки"
+msgstr "Јавен облак од ознаки за луѓе"
#. TRANS: Page notice for page with public people tag cloud.
#. TRANS: %s is a StatusNet sitename.
-#, fuzzy, php-format
+#, php-format
msgid "These are most used people tags on %s"
-msgstr "Овие се најпопуларните скорешни ознаки на %s"
+msgstr "Ова се најкористените ознаки за луѓе на %s"
#. TRANS: Empty list message on page with public people tag cloud.
#. TRANS: This message contains Markdown links in the form [description](link).
-#, fuzzy, php-format
+#, php-format
msgid "No one has [tagged](%%doc.tags%%) anyone yet."
-msgstr ""
-"Сè уште некој нема објавено забелешка со [тарабна ознака](%%doc.tags%%)."
+msgstr "Сè уште некој нема [означено](%%doc.tags%%) никого."
#. TRANS: Additional empty list message on page with public people tag cloud for logged in users.
-#, fuzzy
msgid "Be the first to tag someone!"
-msgstr "Бидете првиот објавувач!"
+msgstr "Бидете првиот што ќе означи некого!"
#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users.
#. TRANS: This message contains Markdown links in the form [description](link).
-#, fuzzy, php-format
+#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to tag "
"someone!"
msgstr ""
-"Зошто не [регистрирате сметка](%%action.register%%) и станете прв што ќе "
-"објави!"
+"Зошто не [регистрирате сметка](%%action.register%%) и станете првиот што ќе "
+"означи некого!"
#. TRANS: DT element on on page with public people tag cloud.
-#, fuzzy
msgid "People tag cloud"
-msgstr "Јавен облак од ознаки"
+msgstr "Јавен облак од ознаки за луѓе"
#. TRANS: Link title for number of people tagged. %d is the number of people tagged.
#, php-format
msgid "1 person tagged"
msgid_plural "%d people tagged"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Означено е 1 лице"
+msgstr[1] "Означени се %d лица"
#. TRANS: Public RSS feed description. %s is the StatusNet site name.
#, php-format
@@ -5079,14 +5058,14 @@ msgid "Could not get a request token."
msgstr "Не можев да добијам жетон за барање."
#. TRANS: Client error displayed when trying to (un)tag an OMB 0.1 remote profile.
-#, fuzzy
msgid "You cannot tag or untag an OMB 0.1 remote profile with this action."
msgstr ""
-"Не можете да се претплатите на OMB 0.1 далечински профил со ова дејство."
+"Не можете да ставате и тргате ознаки на далечински профил OMB 0.1 со ова "
+"дејство."
#. TRANS: Title after untagging a people tag.
msgid "Untagged"
-msgstr ""
+msgstr "Ознаката е тргната"
#. TRANS: Client error displayed when trying to repeat a notice while not logged in.
msgid "Only logged-in users can repeat notices."
@@ -5284,9 +5263,9 @@ msgstr "Не е важечка ознака за луѓе: %s."
#. TRANS: Page title for page showing self tags.
#. TRANS: %1$s is a tag, %2$d is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "Users self-tagged with %1$s, page %2$d"
-msgstr "Користници самоозначени со %1$s - стр. %2$d"
+msgstr "!Користници самоозначени со %1$s, стр. %2$d"
#. TRANS: Title for the sessions administration panel.
msgctxt "TITLE"
@@ -5571,77 +5550,78 @@ msgstr "Избришана забелешка"
#, php-format
msgid "Private timeline for people tagged %1$s by you, page %2$d"
msgstr ""
+"Приватна хронологија за луѓе што сте ги означиле со %1$s, страница %2$d"
#. TRANS: Title for public people tag timeline where the viewer is the tagger.
#. TRANS: %1$s is a people tag, %2$s is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "Timeline for people tagged %1$s by you, page %2$d"
-msgstr "Користници самоозначени со %1$s - стр. %2$d"
+msgstr "Хронологија за луѓе што сте ги означиле со %1$s, страница %2$d"
#. TRANS: Title for private people tag timeline.
#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "Timeline for people tagged %1$s by %2$s, page %3$d"
-msgstr "Забелешки на %1$s означени со %2$s, страница %3$d"
+msgstr "Хронологија за луѓе означени со %1$s од %2$s, страница %3$d"
#. TRANS: Title for private people tag timeline.
#. TRANS: %s is a people tag.
#, php-format
msgid "Private timeline of people tagged %s by you"
-msgstr ""
+msgstr "Приватна хронологија за луѓе што сте ги означиле со %s"
#. TRANS: Title for public people tag timeline where the viewer is the tagger.
#. TRANS: %s is a people tag.
#, php-format
msgid "Timeline for people tagged %s by you"
-msgstr ""
+msgstr "Хронологија за луѓе што сте ги означиле со %s"
#. TRANS: Title for private people tag timeline.
#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname.
#, php-format
msgid "Timeline for people tagged %1$s by %2$s"
-msgstr ""
+msgstr "Хронологија за луѓе означени со %1$s од %2$s"
#. TRANS: Feed title.
#. TRANS: %1$s is a people tag, %2$s is tagger's nickname.
-#, fuzzy, php-format
+#, php-format
msgid "Feed for people tagged %1$s by %2$s (Atom)"
-msgstr "Канал за бендисани забелешки на %s (Atom)"
+msgstr "Канал за луѓе означени со %1$s од %2$s (Atom)"
#. TRANS: Empty list message for people tag timeline.
#. TRANS: %1$s is a people tag, %2$s is a tagger's nickname.
-#, fuzzy, php-format
+#, php-format
msgid ""
"This is the timeline for people tagged %1$s by %2$s but no one has posted "
"anything yet."
msgstr ""
-"Ова е историјата за %s и пријателите, но досега никој нема објавено ништо."
+"Ова е хронологијата за луѓето означени со %1$s од %2$s, но досега никој нема "
+"објавено ништо."
#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags.
msgid "Try tagging more people."
-msgstr ""
+msgstr "Означете повеќе луѓе."
#. TRANS: Additional empty list message for people tag timeline.
#. TRANS: This message contains Markdown links in the form [description](link).
-#, fuzzy, php-format
+#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and start following "
"this timeline!"
msgstr ""
-"Зошто не [регистрирате сметка](%%action.register%%) и станете прв што ќе "
-"објави!"
+"Зошто не [регистрирате сметка](%%action.register%%) и почнете да ја следите "
+"оваа хронологија!"
#. TRANS: Header on show profile tag page.
#. TRANS: %s is a people tag.
#, php-format
msgid "People tagged %s by you"
-msgstr ""
+msgstr "Луѓе што сте ги означиле со %s"
#. TRANS: Link for more "People tagged x by a user"
#. TRANS: if there are more than the mini list's maximum.
-#, fuzzy
msgid "Show all"
-msgstr "Прикажи одговор"
+msgstr "Прикажи ги сите"
#. TRANS: Header for tag subscribers.
#. TRANS: Link description for link to list of users subscribed to a tag.
@@ -6148,26 +6128,24 @@ msgstr ""
"Не можете да се претплатите на OMB 0.1 далечински профил со ова дејство."
#. TRANS: Client error displayed when trying to perform an action while not logged in.
-#, fuzzy
msgid "You must be logged in to unsubscribe to a people tag."
-msgstr "Мора да сте најавени за да можете да создавате групи."
+msgstr "Мора да сте најавени за откажете претплата од ознака за луѓе."
#. TRANS: Client error displayed when trying to perform an action without providing an ID.
-#, fuzzy
msgid "No ID given."
-msgstr "Нема ID-аргумент."
+msgstr "Нема наведено назнака (ID)."
#. TRANS: Server error displayed subscribing to a people tag fails.
#. TRANS: %1$s is a user nickname, %2$s is a people tag.
-#, fuzzy, php-format
+#, php-format
msgid "Could not subscribe user %1$s to people tag %2$s."
-msgstr "Не можам да го зачленам корисникот %1$s во групата 2$s."
+msgstr "Не можам да го претплатам корисникот %1$s на ознаката за луѓе %2$s."
#. TRANS: Title of form to subscribe to a people tag.
#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname.
-#, fuzzy, php-format
+#, php-format
msgid "%1$s subscribed to people tag %2$s by %3$s"
-msgstr "Претплатници на %1$s, стр. %2$d"
+msgstr "%1$s се претплати на ознаката за луѓе %2$s од %3$s"
#. TRANS: Header for list of subscribers for a user (first page).
#. TRANS: %s is the user's nickname.
@@ -6302,14 +6280,12 @@ msgstr "Канал со забелешки за ознаката %s (Atom)"
#. TRANS: Client error displayed when trying to tag a user that cannot be tagged.
#. TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged.
#. TRANS: Error displayed when trying to tag a user that cannot be tagged.
-#, fuzzy
msgid "You cannot tag this user."
-msgstr "Не можете да испратите порака до овој корисник."
+msgstr "Не можете да го означите овој корисник."
#. TRANS: Title for people tag form when not on a profile page.
-#, fuzzy
msgid "Tag a profile"
-msgstr "Кориснички профил"
+msgstr "Означи профил"
#. TRANS: Title for people tag form when on a profile page.
#. TRANS: %s is a profile nickname.
@@ -6318,10 +6294,9 @@ msgid "Tag %s"
msgstr "Означи %s"
#. TRANS: Title for people tag form when an error has occurred.
-#, fuzzy
msgctxt "TITLE"
msgid "Error"
-msgstr "Ajax-грешка"
+msgstr "Грешка"
#. TRANS: Header in people tag form.
msgid "User profile"
@@ -6333,18 +6308,16 @@ msgstr "Означи корисник"
#. TRANS: Field label on people tag form.
#. TRANS: Label in self tags widget.
-#, fuzzy
msgctxt "LABEL"
msgid "Tags"
msgstr "Ознаки"
#. TRANS: Field title on people tag form.
-#, fuzzy
msgid ""
"Tags for this user (letters, numbers, -, ., and _), comma- or space- "
"separated."
msgstr ""
-"Ознаки за Вас самите (букви, бројки, -, . и _), одделени со запирка или "
+"Ознаки за овој корисник (букви, бројки, -, . и _), одделени со запирка или "
"празно место."
msgctxt "TITLE"
@@ -6352,9 +6325,8 @@ msgid "Tags"
msgstr "Ознаки"
#. TRANS: Success message if people tags are saved.
-#, fuzzy
msgid "Tags saved."
-msgstr "Лозинката е зачувана."
+msgstr "Ознаката е зачувана."
#. TRANS: Page notice.
msgid "Use this form to add tags to your subscribers or subscriptions."
@@ -6382,9 +6354,9 @@ msgstr "Претплатата е откажана"
#. TRANS: Page title for form that allows unsubscribing from a people tag.
#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname.
-#, fuzzy, php-format
+#, php-format
msgid "%1$s unsubscribed to people tag %2$s by %3$s"
-msgstr "Претплатници на %1$s, стр. %2$d"
+msgstr "%1$s ја откажа претплатата на ознаката за луѓе %2$s од %3$s"
#. TRANS: Client error displayed when trying to update profile with an incompatible license.
#. TRANS: %1$s is the license incompatible with site license %2$s.
@@ -6925,9 +6897,9 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "Нема таков профил (%1$d) за забелешката (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#, fuzzy, php-format
+#, php-format
msgid "Database error inserting hashtag: %s."
-msgstr "Грешка во базата на податоци при вметнувањето на тарабната ознака: %s"
+msgstr "Грешка во базата на податоци при вметнувањето на тарабната ознака: %s."
#. TRANS: Client exception thrown if a notice contains too many characters.
msgid "Problem saving notice. Too long."
@@ -6997,9 +6969,8 @@ msgid "Problem saving group inbox."
msgstr "Проблем при зачувувањето на групното приемно сандаче."
#. TRANS: Server exception thrown when saving profile_tag inbox fails.
-#, fuzzy
msgid "Problem saving profile_tag inbox."
-msgstr "Проблем при зачувувањето на групното приемно сандаче."
+msgstr "Проблем при зачувувањето на приемното сандаче на profile_tag."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
@@ -7038,32 +7009,27 @@ msgstr ""
#. TRANS: Server exception.
msgid "The tag you are trying to rename to already exists."
-msgstr ""
+msgstr "Ознаката што сакате да ја преименувате веќе постои."
#. TRANS: Server exception saving new tag without having a tagger specified.
-#, fuzzy
msgid "No tagger specified."
-msgstr "Нема назначено група."
+msgstr "Нема наведено означувач."
#. TRANS: Server exception saving new tag without having a tag specified.
-#, fuzzy
msgid "No tag specified."
-msgstr "Нема назначено група."
+msgstr "Нема наведено ознака."
#. TRANS: Server exception saving new tag.
-#, fuzzy
msgid "Could not create profile tag."
-msgstr "Не може да се зачува профил."
+msgstr "Не можев да создадам профилна ознака."
#. TRANS: Server exception saving new tag.
-#, fuzzy
msgid "Could not set profile tag URI."
-msgstr "Не може да се зачува профил."
+msgstr "Не можев да поставам URI за профилната ознака."
#. TRANS: Server exception saving new tag.
-#, fuzzy
msgid "Could not set profile tag mainpage."
-msgstr "Не може да се зачува профил."
+msgstr "Не можев да ја поставам главната страница за профилната ознака."
#. TRANS: Client exception thrown trying to set more tags than allowed.
#, php-format
@@ -7071,6 +7037,8 @@ msgid ""
"You already have created %d or more tags which is the maximum allowed number "
"of tags. Try using or deleting some existing tags."
msgstr ""
+"Веќе имате создадено %d или повеќе ознаки, што претставува максималниот "
+"дозволен број на ознаки. Искористете или избришете некои постоечки ознаки."
#. TRANS: Client exception thrown trying to set one tag for more people than allowed.
#, php-format
@@ -7078,16 +7046,17 @@ msgid ""
"You already have %1$d or more people tagged %2$s, which is the maximum "
"allowed number.Try untagging others with the same tag first."
msgstr ""
+"Веќе имате означено %1$d или повеќе луѓе со %2$s, што претставува "
+"максималниот дозволен број. Најпрвин отстранете ја истава ознака кај некои "
+"други лица."
#. TRANS: Exception thrown when inserting a people tag subscription in the database fails.
-#, fuzzy
msgid "Adding people tag subscription failed."
-msgstr "Не можам да ја избришам претплатата."
+msgstr "Додавањето на претплатата на ознака за луѓе не успеа."
#. TRANS: Exception thrown when deleting a people tag subscription from the database fails.
-#, fuzzy
msgid "Removing people tag subscription failed."
-msgstr "Не можам да ја избришам претплатата."
+msgstr "Отстранувањето на претплатата на ознаката за луѓе не успеа."
#. TRANS: Exception thrown when a right for a non-existing user profile is checked.
msgid "Missing profile."
@@ -7145,7 +7114,7 @@ msgstr "Добредојдовте на %1$s, @%2$s!"
#. TRANS: Exception thrown when trying view "repeated to me".
msgid "Not implemented since inbox change."
-msgstr ""
+msgstr "Не е применето од промената на сандачето за дојдовна пошта."
#. TRANS: Server exception.
msgid "No single user defined for single-user mode."
@@ -7735,13 +7704,13 @@ msgstr "Не користете го овој метод!"
#. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname.
#, php-format
msgid "Timeline for people tagged #%1$s by %2$s"
-msgstr ""
+msgstr "Хронологија на лицата означени со #%1$s од %2$s"
#. TRANS: Message is used as a subtitle in atom list notice feed.
#. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name.
-#, fuzzy, php-format
+#, php-format
msgid "Updates from %1$s's %2$s people tag on %3$s!"
-msgstr "Подновувања од %1$s на %2$s!"
+msgstr "Поднови од ознаката за луѓе %2$s на %1$s на %3$s!"
#. TRANS: Title.
msgid "Notices where this attachment appears"
@@ -7844,7 +7813,6 @@ msgstr ""
"Забелешки: %3$s"
#. TRANS: Error message text shown when a favorite could not be set because it has already been favorited.
-#, fuzzy
msgid "Could not create favorite: Already favorited."
msgstr "Не можев да создадам бендисана забелешка: веќе Ви е бендисана."
@@ -7868,13 +7836,16 @@ msgstr "%1$s ја напушти групата %2$s."
#. TRANS: %1$s is the tagged user, %2$s is the error message (no punctuation).
#, php-format
msgid "Error tagging %1$s: %2$s"
-msgstr ""
+msgstr "Грешка при означувањето на %1$s: %2$s"
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s и %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s беше означен(а) со %2$s"
+msgstr[1] "%1$s беше означен(а) со %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7883,21 +7854,24 @@ msgstr ", "
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
-msgstr "Неважечка ознака: „%s“."
+msgstr "Неважечка ознака: „%s“"
#. TRANS: Error displayed if untagging a user fails.
#. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation).
#, php-format
msgid "Error untagging %1$s: %2$s"
-msgstr ""
+msgstr "Грешка при отстранувањето на ознаката на %1$s: %2$s"
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
-#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
+#, fuzzy, php-format
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] "Следниве ознаки беа отстранети од корисникот %1$s: %2$s."
+msgstr[1] "Следниве ознаки беа отстранети од корисникот %1$s: %2$s."
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -8119,16 +8093,14 @@ msgid "lists the groups you have joined"
msgstr "ги наведува групите кајшто членувате"
#. TRANS: Help message for IM/SMS command "tag".
-#, fuzzy
msgctxt "COMMANDHELP"
msgid "tag a user"
-msgstr "Означи корисник"
+msgstr "означи корисник"
#. TRANS: Help message for IM/SMS command "untag".
-#, fuzzy
msgctxt "COMMANDHELP"
msgid "untag a user"
-msgstr "Означи корисник"
+msgstr "тргни ознака од корисник"
#. TRANS: Help message for IM/SMS command "subscriptions".
msgctxt "COMMANDHELP"
@@ -9341,63 +9313,54 @@ msgid "No oEmbed API endpoint available."
msgstr "Нема достапна крајна точка за oEmbed API."
#. TRANS: Field label for people tag.
-#, fuzzy
msgctxt "LABEL"
msgid "Tag"
msgstr "Ознака"
#. TRANS: Field title for people tag.
-#, fuzzy
msgid "Change the tag (letters, numbers, -, ., and _ are allowed)."
-msgstr ""
-"Ознаки за овој корисник (букви, бројки, -, . и _), одделени со запирка или "
-"празно место."
+msgstr "Смени ја ознаката (допуштени се букви, бројки, -, ., и _)."
#. TRANS: Field title for description of people tag.
-#, fuzzy
msgid "Describe the people tag or topic."
-msgstr "Опишете ја групата или темата."
+msgstr "Опишете ја ознаката за луѓе или темата."
#. TRANS: Field title for description of people tag.
#. TRANS: %d is the maximum number of characters for the description.
-#, fuzzy, php-format
+#, php-format
msgid "Describe the people tag or topic in %d character."
msgid_plural "Describe the people tag or topic in %d characters."
-msgstr[0] "Опишете ја групата или темата со највеќе %d знак"
-msgstr[1] "Опишете ја групата или темата со највеќе %d знаци"
+msgstr[0] "Опишете ја ознаката за луѓе или темата со највеќе %d знак"
+msgstr[1] "Опишете ја ознаката за луѓе или темата со највеќе %d знаци"
#. TRANS: Button title to delete a people tag.
-#, fuzzy
msgid "Delete this people tag."
-msgstr "Избриши ја групава."
+msgstr "Избриши ја ознакава за луѓе."
#. TRANS: Header in people tag edit form.
msgid "Add or remove people"
-msgstr ""
+msgstr "Додај или отстрани луѓе"
#. TRANS: Header in people tag edit form.
-#, fuzzy
msgctxt "HEADER"
msgid "Search"
-msgstr "Барај"
+msgstr "Пребарување"
#. TRANS: Menu item in people tag navigation panel.
-#, fuzzy
msgctxt "MENU"
msgid "People tag"
-msgstr "Луѓе"
+msgstr "Ознака за луѓе"
#. TRANS: Menu item title in people tag navigation panel.
#. TRANS: %1$s is a tag, %2$s is a nickname.
-#, fuzzy, php-format
+#, php-format
msgid "%1$s tag by %2$s."
-msgstr "%1$s и %2$s"
+msgstr "Ознака %1$s од %2$s."
#. TRANS: Menu item in people tag navigation panel.
-#, fuzzy
msgctxt "MENU"
msgid "Tagged"
-msgstr "Ознака"
+msgstr "Означени"
#. TRANS: Menu item in people tag navigation panel.
#. TRANS: Menu item in local navigation menu.
@@ -9407,69 +9370,61 @@ msgstr "Претплатници"
#. TRANS: Menu item title in people tag navigation panel.
#. TRANS: %1$s is a tag, %2$s is a nickname.
-#, fuzzy, php-format
+#, php-format
msgid "Subscribers to %1$s tag by %2$s."
-msgstr "Претплатено на %s."
+msgstr "Претплатници на ознаката %1$s од %2$s."
#. TRANS: Menu item in people tag navigation panel.
-#, fuzzy
msgctxt "MENU"
msgid "Edit"
msgstr "Уреди"
#. TRANS: Menu item title in people tag navigation panel.
#. TRANS: %s is a tag.
-#, fuzzy, php-format
+#, php-format
msgid "Edit %s tag by you."
-msgstr "Уреди ја групата %s"
+msgstr "Уредете ја Вашата ознака %s."
#. TRANS: Link description for link to list of users tagged with a tag.
-#, fuzzy
msgid "Tagged"
-msgstr "Ознака"
+msgstr "Означени"
#. TRANS: Title for link to edit people tag settings.
-#, fuzzy
msgid "Edit people tag settings."
-msgstr "Уреди нагодувања на профилот."
+msgstr "Уреди нагодувања на ознаките за луѓе."
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Уреди"
#. TRANS: Privacy mode text in people tag list item for private tags.
-#, fuzzy
msgctxt "MODE"
msgid "Private"
-msgstr "Приватен"
+msgstr "Приватни"
#. TRANS: Label in people tags widget.
msgctxt "LABEL"
msgid "Tags by you"
-msgstr ""
+msgstr "Ознаки од Вас"
#. TRANS: Fieldset legend in people tags widget.
-#, fuzzy
msgctxt "LEGEND"
msgid "Edit tags"
-msgstr "Уреди"
+msgstr "Уреди ознаки"
#. TRANS: Title for section contaning people tags with the most subscribers.
-#, fuzzy
msgid "People tags with most subscribers"
-msgstr "Луѓе на кои е претплатен корисникот %s."
+msgstr "Ознаки за луѓе со највеќе претплатници"
#. TRANS: Tag summary. %1$d is the number of users tagged with the tag,
#. TRANS: %2$d is the number of subscribers to the tag.
-#, fuzzy, php-format
+#, php-format
msgid "Tagged: %1$d Subscribers: %2$d"
-msgstr "Претплатници на %1$s, стр. %2$d"
+msgstr "Означени: %1$d Претплатници: %2$d"
#. TRANS: Title for page that displays people tags a user has subscribed to.
-#, fuzzy
msgid "People tag subscriptions"
-msgstr "Сите претплати"
+msgstr "Претплати на ознаки за луѓе"
#. TRANS: Menu item in personal group navigation menu.
#. TRANS: Menu item in settings navigation panel.
@@ -9500,13 +9455,11 @@ msgstr "Корисник"
#. TRANS: Menu item in personal group navigation menu.
#. TRANS: Menu item in search group navigation panel.
#. TRANS: Menu item title in local navigation menu.
-#, fuzzy
msgctxt "MENU"
msgid "People tags"
-msgstr "Луѓе"
+msgstr "Ознаки за луѓе"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Корисник"
@@ -9630,9 +9583,8 @@ msgid "Recent tags"
msgstr "Скорешни ознаки"
#. TRANS: Menu item title in search group navigation panel.
-#, fuzzy
msgid "People tags"
-msgstr "Луѓе"
+msgstr "Ознаки за луѓе"
#. TRANS: Menu item in search group navigation panel.
msgctxt "MENU"
@@ -9921,9 +9873,9 @@ msgstr "Групи кадешто членува %s."
#. TRANS: Menu item title in local navigation menu.
#. TRANS: %s is a user nickname.
-#, fuzzy, php-format
+#, php-format
msgid "People tags by %s."
-msgstr "Луѓе претплатени на %s."
+msgstr "Ознаки на луѓе од %s."
#. TRANS: Menu item in local navigation menu.
msgctxt "MENU"
@@ -10059,46 +10011,42 @@ msgstr[0] "Забелешкава ја има повторено едно лиц
msgstr[1] "Забелешкава ја имаат повторено %d лица."
#. TRANS: Form legend.
-#, fuzzy, php-format
+#, php-format
msgid "Search and list people"
-msgstr "Пребарај по мрежното место"
+msgstr "Пребарај и наведи луѓе"
#. TRANS: Dropdown option for searching in profiles.
-#, fuzzy
msgid "Everything"
-msgstr "Сите"
+msgstr "Сè"
#. TRANS: Dropdown option for searching in profiles.
-#, fuzzy
msgid "Fullname"
msgstr "Име и презиме"
#. TRANS: Dropdown option for searching in profiles.
msgid "URI (Remote users)"
-msgstr ""
+msgstr "URI (далечински корисници)"
#. TRANS: Dropdown field label.
-#, fuzzy
msgctxt "LABEL"
msgid "Search in"
-msgstr "Пребарај по мрежното место"
+msgstr "Пребарај во"
#. TRANS: Dropdown field title.
-#, fuzzy
msgid "Choose a field to search."
-msgstr "Одберете ознака за да го ограничите списокот."
+msgstr "Одберете поле за пребарување."
#. TRANS: Form legend.
#. TRANS: %1$s is a nickname, $2$s is a people tag.
-#, fuzzy, php-format
+#, php-format
msgid "Untag %1$s as %2$s"
-msgstr "%1$s и %2$s"
+msgstr "Тргни ја ознаката %2$s од %1$s"
#. TRANS: Legend on form to add a tag to a profile.
#. TRANS: %1$s is a nickname, %2$s ia a people tag.
-#, fuzzy, php-format
+#, php-format
msgid "Tag %1$s as %2$s"
-msgstr "RT @%1$s %2$s"
+msgstr "Означи го/ја %1$s како %2$s"
#. TRANS: Title for top posters section.
msgid "Top posters"
@@ -10243,10 +10191,3 @@ msgstr "Неважечки XML. Нема XRD-корен."
#, php-format
msgid "Getting backup from file '%s'."
msgstr "Земам резерва на податотеката „%s“."
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr ""
-#~ "Можете да означувате само луѓе на коишто сте претплатени или луѓе "
-#~ "претплатени на Вас."
diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po
index e8121311fb..f880480c94 100644
--- a/locale/ml/LC_MESSAGES/statusnet.po
+++ b/locale/ml/LC_MESSAGES/statusnet.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:27+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:27+0000\n"
"Language-Team: Malayalam \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ml\n"
"X-Message-Group: #out-statusnet-core\n"
@@ -171,7 +171,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -7688,9 +7688,12 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s, താൾ %2$d"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s, താൾ %2$d"
+msgstr[1] "%1$s, താൾ %2$d"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7699,7 +7702,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "അസാധുവായ റ്റാഗ്: \"%s\""
@@ -7711,9 +7714,12 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9177,7 +9183,6 @@ msgid "Edit people tag settings."
msgstr "ക്രമീകരണങ്ങളുടെ സജ്ജീകരണം മാറ്റുക"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "തിരുത്തുക"
@@ -9252,7 +9257,6 @@ msgid "People tags"
msgstr "ജനങ്ങൾ"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "ഉപയോക്താവ്"
diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po
index 0cc75cfed6..9e75105ad5 100644
--- a/locale/nb/LC_MESSAGES/statusnet.po
+++ b/locale/nb/LC_MESSAGES/statusnet.po
@@ -12,17 +12,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:31+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:29+0000\n"
"Language-Team: Norwegian (bokmål) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: no\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -175,7 +175,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2292,7 +2292,6 @@ msgid "No tagger or ID."
msgstr "ngen kallenavn eller ID."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
msgstr "Ingen slik bruker."
@@ -7948,9 +7947,12 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s - %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s - %2$s"
+msgstr[1] "%1$s - %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7959,7 +7961,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "Ugyldig merkelapp: «%s»"
@@ -7971,9 +7973,12 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9558,7 +9563,6 @@ msgid "Edit people tag settings."
msgstr "Endre profilinnstillinger"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Rediger"
@@ -9634,7 +9638,6 @@ msgid "People tags"
msgstr "Personer"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Bruker"
diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po
index 7d72e51cc3..53376eb27d 100644
--- a/locale/nl/LC_MESSAGES/statusnet.po
+++ b/locale/nl/LC_MESSAGES/statusnet.po
@@ -12,17 +12,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:29+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:28+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -165,30 +165,31 @@ msgstr "Het profiel bestaat niet."
#. TRANS: Client error displayed when referring to a non-exsting people tag.
#. TRANS: Client error displayed when referring to non-existing people tag.
#. TRANS: Client error displayed trying to reference a non-existing people tag.
-#, fuzzy
msgid "No such people tag."
-msgstr "Onbekend label."
+msgstr "Onbekend persoonslabel."
#. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile.
-#, fuzzy
msgid "You cannot tag an OMB 0.1 remote profile with this action."
msgstr ""
-"U kunt niet abonneren op een OMB 1.0 profiel van een andere omgeving via "
-"deze handeling."
+"U kunt een OMB 1.0 profiel van een andere omgeving niet labelen via deze "
+"handeling."
#. TRANS: Client error displayed when an unknown error occurs while tagging a user.
#. TRANS: %s is a username.
#, php-format
msgid "There was an unexpected error while tagging %s."
-msgstr ""
+msgstr "Er is een onverwachte fout opgetreden tijdens het labelen van %s."
#. TRANS: Client error displayed when an unknown error occurs while tagging a user.
#. TRANS: %s is a profile URL.
-#, php-format
+#, fuzzy, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
+"Er is een probleem opgetreden tijdens het labelen van %s. De omgeving aan de "
+"andere kant geeft waarschijnlijk geen correct antwoord. Probeer het later "
+"opnieuw."
#. TRANS: Title after subscribing to a people tag.
#. TRANS: Page title when subscription succeeded.
@@ -789,63 +790,55 @@ msgstr "Een alias kan niet hetzelfde zijn als de gebruikersnaam."
#. TRANS: Client error displayed when referring to a non-existing list.
#. TRANS: Client error displayed trying to perform an action related to a non-existing list.
#. TRANS: Client error displayed when referring to a non-existing list.
-#, fuzzy
msgid "List not found."
-msgstr "De pagina is niet aangetroffen."
+msgstr "De lijst is niet aangetroffen."
#. TRANS: Client error displayed when trying to update another user's list.
msgid "You cannot update lists that do not belong to you."
-msgstr ""
+msgstr "U kunt lijsten die niet van u zijn niet bijwerken."
#. TRANS: Client error displayed when an unknown error occurs updating a list.
#. TRANS: Client error displayed when an unknown error occurs viewing list members.
#. TRANS: Client error displayed when an unknown error occurs in the list subscribers action.
#. TRANS: Client error displayed when an unknown error occurs unsubscribing from a list.
-#, fuzzy
msgid "An error occured."
msgstr "Er is een fout opgetreden."
#. TRANS: Client error displayed when trying to delete another user's list.
msgid "You cannot delete lists that do not belong to you."
-msgstr ""
+msgstr "U kunt lijsten die niet van u zijn niet verwijderen."
#. TRANS: Client error displayed when referring to a non-list member.
-#, fuzzy
msgid "The specified user is not a member of this list."
-msgstr "De gebruiker is geen lid van de groep."
+msgstr "De opgegeven gebruiker is geen lid van deze lijst."
#. TRANS: Client error displayed when trying to add members to a list without having the right to do so.
-#, fuzzy
msgid "You are not allowed to add members to this list."
-msgstr "U mag geen groepen aanmaken op deze site."
+msgstr "U mag geen leden toevoegen aan deze lijst."
#. TRANS: Client error displayed when trying to modify list members without specifying them.
-#, fuzzy
msgid "You must specify a member."
-msgstr "Er moet een profiel opgegeven worden."
+msgstr "U moet een lid opgeven."
#. TRANS: Client error displayed when trying to remove members from a list without having the right to do so.
-#, fuzzy
msgid "You are not allowed to remove members from this list."
-msgstr "U mag geen groepen aanmaken op deze site."
+msgstr "U mag geen leden uit deze lijst verwijderen."
#. TRANS: Client error displayed when trying to remove a list member that is not part of a list.
msgid "The user you are trying to remove from the list is not a member."
-msgstr ""
+msgstr "De gebruiker die u probeert te verwijderen uit de lijst is geen lid."
#. TRANS: Client error displayed when trying to create a list without a name.
-#, fuzzy
msgid "A list must have a name."
-msgstr "Het Atombericht moet een Atomopmaak hebben."
+msgstr "Een lijst moet een naam hebben."
#. TRANS: Client error displayed when a membership check for a user is nagative.
msgid "The specified user is not a subscriber of this list."
-msgstr ""
+msgstr "De opgegeven gebruiker is niet geabonneerd op deze lijst."
#. TRANS: Client error displayed when trying to unsubscribe from a non-subscribed list.
-#, fuzzy
msgid "You are not subscribed to this list."
-msgstr "U bent niet geabonneerd op dat profiel."
+msgstr "U bent niet geabonneerd op deze lijst."
#. TRANS: Client error displayed when uploading a media file has failed.
msgid "Upload failed."
@@ -1111,9 +1104,9 @@ msgstr ""
#. TRANS: Server error displayed whe trying to get a timeline fails.
#. TRANS: %s is the error message.
-#, fuzzy, php-format
+#, php-format
msgid "Could not generate feed for list - %s"
-msgstr "Het was niet mogelijk een aanmeldtoken aan te maken voor %s"
+msgstr "Het was niet mogelijk een feed voor de lijst aan te maken - %s"
#. TRANS: Title for timeline of most recent mentions of a user.
#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname.
@@ -2281,68 +2274,65 @@ msgstr "De instellingen zijn opgeslagen."
#. TRANS: %s is a tag.
#, php-format
msgid "Delete %s people tag"
-msgstr ""
+msgstr "Persoonslabel %s verwijderen"
#. TRANS: Title for edit people tag page.
#. TRANS: %s is a tag.
#. TRANS: Form legend for people tag edit form.
#. TRANS: %s is a people tag.
-#, fuzzy, php-format
+#, php-format
msgid "Edit people tag %s"
-msgstr "Geen geldig gebruikerslabel: %s."
+msgstr "Persoonslabel %s bewerken"
#. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID.
-#, fuzzy
msgid "No tagger or ID."
-msgstr "Geen gebruikersnaam of ID."
+msgstr "Geen labelaar of ID."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
-msgstr "Deze gebruiker bestaat niet."
+msgstr "Dit is geen lokale gebruiker."
#. TRANS: Client error displayed when reting to edit a tag that was not self-created.
-#, fuzzy
msgid "You must be the creator of the tag to edit it."
-msgstr "U moet beheerder zijn om de groep te kunnen bewerken."
+msgstr "U moet de maker van het label zijn om dit te kunnen bewerken."
#. TRANS: Form instruction for edit people tag form.
-#, fuzzy
msgid "Use this form to edit the people tag."
-msgstr "Gebruik dit formulier om de groep te bewerken."
+msgstr "Gebruik dit formulier om het persoonslabel te bewerken."
#. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect.
-#, fuzzy
msgid "Delete aborted."
-msgstr "Mededeling verwijderen"
+msgstr "Het verwijderen is afgebroken."
#. TRANS: Text in confirmation dialog for deleting a tag.
msgid ""
"Deleting this tag will permanantly remove all its subscription and "
"membership records. Do you still want to continue?"
msgstr ""
+"Door dit label te verwijderen verwijdert u ook alle abonnementen en "
+"lidmaatschapsgegevens. Wilt u doorgaan?"
#. TRANS: Form validation error displayed if a given tag is invalid.
-#, fuzzy
msgid "Invalid tag."
-msgstr "Ongeldige afbeelding."
+msgstr "Ongeldig label."
#. TRANS: Form validation error displayed if a given tag is already present.
#. TRANS: %s is the already present tag.
-#, fuzzy, php-format
+#, php-format
msgid "You already have a tag named %s."
-msgstr "U hebt die mededeling al herhaald."
+msgstr "U hebt al een label met de naam %s."
#. TRANS: Text in confirmation dialog for setting a tag from public to private.
msgid ""
"Setting a public tag as private will permanently remove all the existing "
"subscriptions to it. Do you still want to continue?"
msgstr ""
+"Door een openbaar label als privé in te stellen worden alle bestaande "
+"abonnementen verwijderd. Wilt u doorgaan?"
#. TRANS: TRANS: Server error displayed when updating a people tag fails.
-#, fuzzy
msgid "Could not update people tag."
-msgstr "Het was niet mogelijk de groep bij te werken."
+msgstr "Het was niet mogelijk het persoonslabel bij te werken."
#. TRANS: Title for e-mail settings.
msgid "Email settings"
@@ -4113,100 +4103,96 @@ msgstr "Gebruikers zoeken"
#. TRANS: Title for people tag page.
#. TRANS: %s is a tag.
-#, fuzzy, php-format
+#, php-format
msgid "Public people tag %s"
-msgstr "Openbare tijdlijn, pagina %d"
+msgstr "Openbaar persoonslabel %s"
#. TRANS: Title for people tag page.
#. TRANS: %1$s is a tag, %2$d is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "Public people tag %1$s, page %2$d"
-msgstr "Antwoorden aan %1$s, pagina %2$d"
+msgstr "Openbaar persoonslabel %1$s, pagina %2$d"
#. TRANS: Message for anonymous users on people tag page.
#. TRANS: This message contains Markdown links in the form [description](link).
-#, fuzzy, php-format
+#, php-format
msgid ""
"People tags are how you sort similar people on %%site.name%%, a [micro-"
"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the "
"Free Software [StatusNet](http://status.net/) tool. You can then easily keep "
"track of what they are doing by subscribing to the tag's timeline."
msgstr ""
-"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [microblogdienst]"
-"(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software "
-"[StatusNet](http://status.net/). De leden wisselen korte mededelingen uit "
-"over hun ervaringen en interesses. "
+"Persoonslabels zijn een manier om gelijksoortige mensen te ordenen op %%site."
+"name%%, een [microblogdienst](http://en.wikipedia.org/wiki/Micro-blogging) "
+"gebaseerde op het vrije softwareprogramma [StatusNet](http://status.net/). U "
+"kunt ze dan eenvoudig volgen door te abonneren op de tijdlijn van het "
+"persoonslabel."
#. TRANS: Client error displayed when a tagger is expected but not provided.
-#, fuzzy
msgid "No tagger."
-msgstr "Onbekend label."
+msgstr "Geen tagger."
#. TRANS: Title for list of people tagged by the user with a tag.
#. TRANS: %1$s is a tag, %2$s is a username.
#. TRANS: Header on show profile tag page.
#. TRANS: %1$s is a people tag, %2$s is a tagger's nickname.
-#, fuzzy, php-format
+#, php-format
msgid "People tagged %1$s by %2$s"
-msgstr "Antwoorden aan %1$s op %2$s."
+msgstr "Mensen met het label %1$s door %2$s"
#. TRANS: Title for list of people tagged by the user with a tag.
#. TRANS: %1$s is a tag, %2$s is a username, %2$s is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "People tagged %1$s by %2$s, page %3$d"
-msgstr "Antwoorden aan %1$s, pagina %2$d"
+msgstr "Mensen met het label %1$s door %2$s, pagina %3$d"
#. TRANS: Addition in tag membership list for creator of a tag.
#. TRANS: Addition in tag subscribers list for creator of a tag.
-#, fuzzy
msgid "Creator"
-msgstr "Aangemaakt"
+msgstr "Maker"
#. TRANS: Title for people tags by a user page for a private tag.
-#, fuzzy
msgid "Private people tags by you"
-msgstr "geeft de mensen die u volgen weer"
+msgstr "Uw privé persoonslabels"
#. TRANS: Title for people tags by a user page for a public tag.
-#, fuzzy
msgid "Public people tags by you"
-msgstr "Publieke woordwolk"
+msgstr "Openbare persoonslabels door u"
#. TRANS: Title for people tags by a user page.
#. TRANS: Page notice.
msgid "People tags by you"
-msgstr ""
+msgstr "Persoonslabels door u"
#. TRANS: Title for people tags by a user page.
#. TRANS: %s is a user nickname.
#. TRANS: Page notice. %s is a tagger's nickname.
#. TRANS: Menu item title in personal group navigation menu.
#. TRANS: %s is a username.
-#, fuzzy, php-format
+#, php-format
msgid "People tags by %s"
-msgstr "Herhaald van %s"
+msgstr "Persoonslabels door %s"
#. TRANS: Title for people tags by a user page.
#. TRANS: %1$s is a user nickname, %2$d is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "People tags by %1$s, page %2$d"
-msgstr "Antwoorden aan %1$s, pagina %2$d"
+msgstr "Persoonslabels door %1$s, pagina %2$d"
#. TRANS: Client error displayed when trying view another user's private people tags.
msgid "You cannot view others' private people tags"
-msgstr ""
+msgstr "U kunt de private persoonslabels van andere gebruikers niet bekijken"
#. TRANS: Mode selector label.
-#, fuzzy
msgid "Mode"
-msgstr "Modereren"
+msgstr "Modus"
#. TRANS: Link text to show people tags for user %s.
#. TRANS: Title for page that displays which people tags a user has been tagged with.
#. TRANS: %s is a profile name.
-#, fuzzy, php-format
+#, php-format
msgid "People tags for %s"
-msgstr "Herhaald van %s"
+msgstr "Persoonslabels voor %s"
#. TRANS: Fieldset legend.
#. TRANS: Fieldset legend on gallery action page.
@@ -4215,18 +4201,16 @@ msgstr "Selecteer een label om op te filteren"
#. TRANS: Checkbox title.
msgid "Show private tags."
-msgstr ""
+msgstr "Privélabels weergeven."
#. TRANS: Checkbox label to show public tags.
-#, fuzzy
msgctxt "LABEL"
msgid "Public"
msgstr "Openbaar"
#. TRANS: Checkbox title.
-#, fuzzy
msgid "Show public tags."
-msgstr "Onbekend label."
+msgstr "Openbare labels weergeven."
#. TRANS: Submit button text for tag filter form.
#. TRANS: Submit button text on gallery action page.
@@ -4237,7 +4221,7 @@ msgstr "OK"
#. TRANS: Message displayed for anonymous users on page that displays people tags by a user.
#. TRANS: This message contains Markdown links in the form [description](links).
#. TRANS: %s is a tagger nickname.
-#, fuzzy, php-format
+#, php-format
msgid ""
"These are people tags created by **%s**. People tags are how you sort "
"similar people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia."
@@ -4245,27 +4229,28 @@ msgid ""
"(http://status.net/) tool. You can easily keep track of what they are doing "
"by subscribing to the tag's timeline."
msgstr ""
-"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [microblogdienst]"
-"(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software "
-"[StatusNet](http://status.net/). De leden wisselen korte mededelingen uit "
-"over hun ervaringen en interesses. "
+"Dit zijn de persoonslabels die zijn gemaakt door **%s**. Via persoonslabels "
+"kunt u gelijksoortige mensen ordenen op %%%%site.name%%%%, a "
+"[microblogdienst](http://en.wikipedia.org/wiki/Micro-blogging) service "
+"gebaseerd op het vrije softwareprogramma [StatusNet](http://status.net/) "
+"tool. U kunt eenvoudig bijhouden wat ze doen door te abonneren op de "
+"tijdlijn van het label."
#. TRANS: Message displayed on page that displays people tags by a user when there are none.
#. TRANS: This message contains Markdown links in the form [description](links).
#. TRANS: %s is a tagger nickname.
-#, fuzzy, php-format
+#, php-format
msgid "%s has not created any [people tags](%%%%doc.tags%%%%) yet."
-msgstr ""
-"Nog niemand heeft een bericht met het [hekjelabel](%%doc.tags%%) verzonden."
+msgstr "%s heeft nog geen [persoonslabels](%%doc.tags%%) gemaakt."
-#, fuzzy, php-format
+#, php-format
msgid "People tags for %1$s, page %2$d"
-msgstr "Antwoorden aan %1$s, pagina %2$d"
+msgstr "Persoonslabels voor %1$s, pagina %2$d"
#. TRANS: Message displayed for anonymous users on page that displays people tags for a user.
#. TRANS: This message contains Markdown links in the form [description](links).
#. TRANS: %s is a tagger nickname.
-#, fuzzy, php-format
+#, php-format
msgid ""
"These are people tags for **%s**. People tags are how you sort similar "
"people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/"
@@ -4273,10 +4258,11 @@ msgid ""
"net/) tool. You can easily keep track of what they are doing by subscribing "
"to the tag's timeline."
msgstr ""
-"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [microblogdienst]"
-"(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software "
-"[StatusNet](http://status.net/). De leden wisselen korte mededelingen uit "
-"over hun ervaringen en interesses. "
+"Dit zijn persoonslabels voor **%s**. U kunt persoonslabels gebruiken om "
+"soortgelijke mensen te ordenen op %%%%site.name%%%%, een [microblogdienst]"
+"(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerde op het vrije "
+"softwareprogramma [StatusNet](http://status.net/) tool. U kunt eenvoudig "
+"bijhouden wat ze doen door te abonneren op de tijdlijn voor het label."
#. TRANS: Message displayed on page that displays people tags for a user when there are none.
#. TRANS: This message contains Markdown links in the form [description](links).
@@ -4284,35 +4270,36 @@ msgstr ""
#, php-format
msgid "%s has not been [tagged](%%%%doc.tags%%%%) by anyone yet."
msgstr ""
+"%s heeft nog geen [label](%%%%doc.tags%%%%) gekregen van andere mensen."
#. TRANS: Page title for list of people tag subscribers.
#. TRANS: %1$s is a tag, %2$s is a user nickname.
#, php-format
msgid "Subscribers of people tagged %1$s by %2$s"
-msgstr ""
+msgstr "Abonnees op mensen met het label %1$s door %2$s"
#. TRANS: Page title for list of people tag subscribers.
#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "Subscribers of people tagged %1$s by %2$s, page %3$d"
-msgstr "Mededelingen van %1$s met het label %2$s, pagina %3$d"
+msgstr "Abonnees op mensen met het label %1$s door %2$s, pagina %3$d"
#. TRANS: Title for page that displays people tags subscribed to by a user.
#. TRANS: %s is a profile nickname.
-#, fuzzy, php-format
+#, php-format
msgid "People tags subscriptions by %s"
-msgstr "Gebruikers met een abonnement op %s."
+msgstr "Persoonslabelabonnementen van %s"
#. TRANS: Title for page that displays people tags subscribed to by a user.
#. TRANS: %1$s is a profile nickname, %2$d is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "People tags subscriptions by %1$s, page %2$d"
-msgstr "Abonnementen van %1$s, pagina %2$d"
+msgstr "Persoonslabelabonnementen van %1$s, pagina %2$d"
#. TRANS: Message displayed for anonymous users on page that displays people tags subscribed to by a user.
#. TRANS: This message contains Markdown links in the form [description](links).
#. TRANS: %s is a profile nickname.
-#, fuzzy, php-format
+#, php-format
msgid ""
"These are people tags subscribed to by **%s**. People tags are how you sort "
"similar people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia."
@@ -4320,10 +4307,12 @@ msgid ""
"(http://status.net/) tool. You can easily keep track of what they are doing "
"by subscribing to the tag's timeline."
msgstr ""
-"**%s** is een gebruikersgroep op %%%%site.name%%%%, een [microblogdienst]"
-"(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software "
-"[StatusNet](http://status.net/). De leden wisselen korte mededelingen uit "
-"over hun ervaringen en interesses. "
+"Dit zijn persoonslabels waar **%s** op is geabonneerd. U kunt persoonslabels "
+"gebruiken om soortgelijke mensen te ordenen op %%%%site.name%%%%, een "
+"[microblogdienst](http://en.wikipedia.org/wiki/Micro-blogging) gebaseerde op "
+"het vrije softwareprogramma [StatusNet](http://status.net/) tool. U kunt "
+"eenvoudig bijhouden wat ze doen door te abonneren op de tijdlijn voor het "
+"label."
#. TRANS: Page title for AJAX form return when a disabling a plugin.
msgctxt "plugin"
@@ -4393,17 +4382,16 @@ msgstr ""
#. TRANS: %s is a field name.
#, php-format
msgid "Unidentified field %s."
-msgstr ""
+msgstr "Niet-geïdentificeerd veld %s."
#. TRANS: Page title.
-#, fuzzy
msgctxt "TITLE"
msgid "Search results"
-msgstr "Site doorzoeken"
+msgstr "Zoekresultaten"
#. TRANS: Error message in case a search is shorter than three characters.
msgid "The search string must be at least 3 characters long."
-msgstr ""
+msgstr "De zoekterm moet tenminste drie tekens lang zijn."
#. TRANS: Page title for profile settings.
msgid "Profile settings"
@@ -4674,49 +4662,45 @@ msgstr ""
"net/)"
#. TRANS: Title for page with public people tag cloud.
-#, fuzzy
msgid "Public people tag cloud"
-msgstr "Publieke woordwolk"
+msgstr "Woordwolk voor openbare persoonslabels"
#. TRANS: Page notice for page with public people tag cloud.
#. TRANS: %s is a StatusNet sitename.
-#, fuzzy, php-format
+#, php-format
msgid "These are most used people tags on %s"
-msgstr "De meest recente en populairste labels op %s"
+msgstr "Dit zijn de meest gebruikte persoonslabels op %s"
#. TRANS: Empty list message on page with public people tag cloud.
#. TRANS: This message contains Markdown links in the form [description](link).
-#, fuzzy, php-format
+#, php-format
msgid "No one has [tagged](%%doc.tags%%) anyone yet."
-msgstr ""
-"Nog niemand heeft een bericht met het [hekjelabel](%%doc.tags%%) verzonden."
+msgstr "Niemand heeft nog iemand [gelabeld](%%doc.tags%%)."
#. TRANS: Additional empty list message on page with public people tag cloud for logged in users.
-#, fuzzy
msgid "Be the first to tag someone!"
-msgstr "U kunt de eerste zijn die een bericht plaatst!"
+msgstr "U kunt de eerste zijn die iemand labelt!"
#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users.
#. TRANS: This message contains Markdown links in the form [description](link).
-#, fuzzy, php-format
+#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to tag "
"someone!"
msgstr ""
"U kunt een [gebruiker registeren](%%action.register%%) en dan de eerste zijn "
-"die er een plaatst!"
+"die iemand labelt!"
#. TRANS: DT element on on page with public people tag cloud.
-#, fuzzy
msgid "People tag cloud"
-msgstr "Publieke woordwolk"
+msgstr "Personenwoordwolk"
#. TRANS: Link title for number of people tagged. %d is the number of people tagged.
#, php-format
msgid "1 person tagged"
msgid_plural "%d people tagged"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Eén persoon gelabeld"
+msgstr[1] "%d personen gelabeld"
#. TRANS: Public RSS feed description. %s is the StatusNet site name.
#, php-format
@@ -5112,15 +5096,14 @@ msgid "Could not get a request token."
msgstr "Het was niet mogelijk een verzoektoken te krijgen."
#. TRANS: Client error displayed when trying to (un)tag an OMB 0.1 remote profile.
-#, fuzzy
msgid "You cannot tag or untag an OMB 0.1 remote profile with this action."
msgstr ""
-"U kunt niet abonneren op een OMB 1.0 profiel van een andere omgeving via "
-"deze handeling."
+"U kunt via deze handeling geen label toevoegen of verwijderen van een OMB "
+"1.0-profiel van een andere omgeving."
#. TRANS: Title after untagging a people tag.
msgid "Untagged"
-msgstr ""
+msgstr "Ongelabeld"
#. TRANS: Client error displayed when trying to repeat a notice while not logged in.
msgid "Only logged-in users can repeat notices."
@@ -5318,9 +5301,9 @@ msgstr "Geen geldig gebruikerslabel: %s."
#. TRANS: Page title for page showing self tags.
#. TRANS: %1$s is a tag, %2$d is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "Users self-tagged with %1$s, page %2$d"
-msgstr "Gebruikers die zichzelf met %1$s hebben gelabeld - pagina %2$d"
+msgstr "Gebruikers die zichzelf met %1$s hebben gelabeld, pagina %2$d"
#. TRANS: Title for the sessions administration panel.
msgctxt "TITLE"
@@ -5605,79 +5588,78 @@ msgstr "Deze mededeling is verwijderd."
#. TRANS: %1$s is a people tag, %2$s is a page number.
#, php-format
msgid "Private timeline for people tagged %1$s by you, page %2$d"
-msgstr ""
+msgstr "Private tijdlijn voor mensen die u %1$s hebt gelabeld, pagina %2$d"
#. TRANS: Title for public people tag timeline where the viewer is the tagger.
#. TRANS: %1$s is a people tag, %2$s is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "Timeline for people tagged %1$s by you, page %2$d"
-msgstr "Gebruikers die zichzelf met %1$s hebben gelabeld - pagina %2$d"
+msgstr "Tijdlijn voor mensen die u %1$s hebt gelabeld, pagina %2$d"
#. TRANS: Title for private people tag timeline.
#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "Timeline for people tagged %1$s by %2$s, page %3$d"
-msgstr "Mededelingen van %1$s met het label %2$s, pagina %3$d"
+msgstr "Tijdlijn voor mensen die door %2$s met %1$s zijn gelabeld, pagina %3$d"
#. TRANS: Title for private people tag timeline.
#. TRANS: %s is a people tag.
#, php-format
msgid "Private timeline of people tagged %s by you"
-msgstr ""
+msgstr "Private tijdlijn voor mensen die u %s hebt gelabeld"
#. TRANS: Title for public people tag timeline where the viewer is the tagger.
#. TRANS: %s is a people tag.
#, php-format
msgid "Timeline for people tagged %s by you"
-msgstr ""
+msgstr "Tijdlijn voor mensen die u %s hebt gelabeld"
#. TRANS: Title for private people tag timeline.
#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname.
#, php-format
msgid "Timeline for people tagged %1$s by %2$s"
-msgstr ""
+msgstr "Tijdlijn voor mensen die door %2$s met %1$s zijn gelabeld"
#. TRANS: Feed title.
#. TRANS: %1$s is a people tag, %2$s is tagger's nickname.
-#, fuzzy, php-format
+#, php-format
msgid "Feed for people tagged %1$s by %2$s (Atom)"
-msgstr "Favorietenfeed van %s (Atom)"
+msgstr "Feed voor mensen die door %2$s met %1$s zijn gelabeld (Atom)"
#. TRANS: Empty list message for people tag timeline.
#. TRANS: %1$s is a people tag, %2$s is a tagger's nickname.
-#, fuzzy, php-format
+#, php-format
msgid ""
"This is the timeline for people tagged %1$s by %2$s but no one has posted "
"anything yet."
msgstr ""
-"Dit is de tijdlijn voor %s en vrienden, maar niemand heeft nog mededelingen "
-"geplaatst."
+"Dit is de tijdlijn voor mensen die door %2$s gelabeld zijn met %1$s, maar "
+"niemand heeft nog mededelingen geplaatst."
#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags.
msgid "Try tagging more people."
-msgstr ""
+msgstr "Probeer meer mensen te labelen."
#. TRANS: Additional empty list message for people tag timeline.
#. TRANS: This message contains Markdown links in the form [description](link).
-#, fuzzy, php-format
+#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and start following "
"this timeline!"
msgstr ""
-"U kunt een [gebruiker registeren](%%action.register%%) en dan de eerste zijn "
-"die er een plaatst!"
+"U kunt een [gebruiker registeren](%%action.register%%) en dan deze tijdlijn "
+"volgen!"
#. TRANS: Header on show profile tag page.
#. TRANS: %s is a people tag.
#, php-format
msgid "People tagged %s by you"
-msgstr ""
+msgstr "Mensen die u met %s gelabeld hebt."
#. TRANS: Link for more "People tagged x by a user"
#. TRANS: if there are more than the mini list's maximum.
-#, fuzzy
msgid "Show all"
-msgstr "Antwoord weergegeven"
+msgstr "Allemaal weergeven"
#. TRANS: Header for tag subscribers.
#. TRANS: Link description for link to list of users subscribed to a tag.
@@ -6185,30 +6167,30 @@ msgstr "Een lijst met gebruikers die wachten op goedkeuring om u te volgen."
#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
-"U kunt niet abonneren op een OMB 1.0 profiel van een andere omgeving via "
-"deze handeling."
+"U kunt via deze handeling niet abonneren op een OMB 1.0-profiel van een "
+"andere omgeving."
#. TRANS: Client error displayed when trying to perform an action while not logged in.
-#, fuzzy
msgid "You must be logged in to unsubscribe to a people tag."
-msgstr "U moet aangemeld zijn om een groep aan te kunnen maken."
+msgstr "U moet aangemeld zijn om uit te kunnen schrijven op een persoonslabel."
#. TRANS: Client error displayed when trying to perform an action without providing an ID.
-#, fuzzy
msgid "No ID given."
-msgstr "Geen ID-argument."
+msgstr "Geen ID opgegeven."
#. TRANS: Server error displayed subscribing to a people tag fails.
#. TRANS: %1$s is a user nickname, %2$s is a people tag.
-#, fuzzy, php-format
+#, php-format
msgid "Could not subscribe user %1$s to people tag %2$s."
-msgstr "Het was niet mogelijk gebruiker %1$s toe te voegen aan de groep %2$s."
+msgstr ""
+"Het was niet mogelijk om gebruiker %1$s te abonneren op het persoonslabel %2"
+"$s."
#. TRANS: Title of form to subscribe to a people tag.
#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname.
-#, fuzzy, php-format
+#, php-format
msgid "%1$s subscribed to people tag %2$s by %3$s"
-msgstr "Abonnees van %1$s, pagina %2$d"
+msgstr "%1$s is geabonneerd op het persoonslabel %2$s van %3$s"
#. TRANS: Header for list of subscribers for a user (first page).
#. TRANS: %s is the user's nickname.
@@ -6344,14 +6326,12 @@ msgstr "Mededelingenfeed voor label %s (Atom)"
#. TRANS: Client error displayed when trying to tag a user that cannot be tagged.
#. TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged.
#. TRANS: Error displayed when trying to tag a user that cannot be tagged.
-#, fuzzy
msgid "You cannot tag this user."
-msgstr "U kunt geen bericht naar deze gebruiker zenden."
+msgstr "U kunt deze gebruiker niet labelen."
#. TRANS: Title for people tag form when not on a profile page.
-#, fuzzy
msgid "Tag a profile"
-msgstr "Gebruikersprofiel"
+msgstr "Profiel labelen"
#. TRANS: Title for people tag form when on a profile page.
#. TRANS: %s is a profile nickname.
@@ -6360,10 +6340,9 @@ msgid "Tag %s"
msgstr "Label %s"
#. TRANS: Title for people tag form when an error has occurred.
-#, fuzzy
msgctxt "TITLE"
msgid "Error"
-msgstr "Er is een Ajax-fout opgetreden"
+msgstr "Fout"
#. TRANS: Header in people tag form.
msgid "User profile"
@@ -6375,28 +6354,25 @@ msgstr "Gebruiker labelen"
#. TRANS: Field label on people tag form.
#. TRANS: Label in self tags widget.
-#, fuzzy
msgctxt "LABEL"
msgid "Tags"
msgstr "Labels"
#. TRANS: Field title on people tag form.
-#, fuzzy
msgid ""
"Tags for this user (letters, numbers, -, ., and _), comma- or space- "
"separated."
msgstr ""
-"Eigen labels (letter, getallen, -, ., en _). Gescheiden door komma's of "
-"spaties."
+"Labels voor deze gebruiker (letters, cijfers, -, ., en _). Gebruik komma's "
+"of spaties als scheidingsteken."
msgctxt "TITLE"
msgid "Tags"
msgstr "Labels"
#. TRANS: Success message if people tags are saved.
-#, fuzzy
msgid "Tags saved."
-msgstr "Het wachtwoord is opgeslagen."
+msgstr "De labels zijn opgeslagen."
#. TRANS: Page notice.
msgid "Use this form to add tags to your subscribers or subscriptions."
@@ -6426,9 +6402,9 @@ msgstr "Uitgeschreven"
#. TRANS: Page title for form that allows unsubscribing from a people tag.
#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname.
-#, fuzzy, php-format
+#, php-format
msgid "%1$s unsubscribed to people tag %2$s by %3$s"
-msgstr "Abonnees van %1$s, pagina %2$d"
+msgstr "%1$s is uitgeschreven van het persoonslabel %2$s van %3$s"
#. TRANS: Client error displayed when trying to update profile with an incompatible license.
#. TRANS: %1$s is the license incompatible with site license %2$s.
@@ -6964,9 +6940,10 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr "Er is geen profiel (%1$d) te vinden bij de mededeling (%2$d)."
#. TRANS: Server exception. %s are the error details.
-#, fuzzy, php-format
+#, php-format
msgid "Database error inserting hashtag: %s."
-msgstr "Er is een databasefout opgetreden bij de invoer van de hashtag: %s"
+msgstr ""
+"Er is een databasefout opgetreden tijdens het invoegen van de hashtag: %s"
#. TRANS: Client exception thrown if a notice contains too many characters.
msgid "Problem saving notice. Too long."
@@ -7043,11 +7020,10 @@ msgstr ""
"groep."
#. TRANS: Server exception thrown when saving profile_tag inbox fails.
-#, fuzzy
msgid "Problem saving profile_tag inbox."
msgstr ""
-"Er is een probleem opgetreden bij het opslaan van het Postvak IN van de "
-"groep."
+"Er is een probleem opgetreden tijdens het opslaan van het Postvak IN van "
+"profile_tag."
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
@@ -7086,32 +7062,28 @@ msgstr ""
#. TRANS: Server exception.
msgid "The tag you are trying to rename to already exists."
-msgstr ""
+msgstr "Het label dat u probeert te hernoemen bestaat al."
#. TRANS: Server exception saving new tag without having a tagger specified.
-#, fuzzy
msgid "No tagger specified."
-msgstr "Er is geen groep aangegeven."
+msgstr "Er is geen labelaar opgegeven."
#. TRANS: Server exception saving new tag without having a tag specified.
-#, fuzzy
msgid "No tag specified."
-msgstr "Er is geen groep aangegeven."
+msgstr "Er is geen label aangegeven."
#. TRANS: Server exception saving new tag.
-#, fuzzy
msgid "Could not create profile tag."
-msgstr "Het was niet mogelijk het profiel op te slaan."
+msgstr "Het was niet mogelijk het profiellabel aan te maken."
#. TRANS: Server exception saving new tag.
-#, fuzzy
msgid "Could not set profile tag URI."
-msgstr "Het was niet mogelijk het profiel op te slaan."
+msgstr "Het was niet mogelijk de URI in te stellen voor het profiellabel."
#. TRANS: Server exception saving new tag.
-#, fuzzy
msgid "Could not set profile tag mainpage."
-msgstr "Het was niet mogelijk het profiel op te slaan."
+msgstr ""
+"Het was niet mogelijk de hoofdpagina in te stellen voor het profiellabel."
#. TRANS: Client exception thrown trying to set more tags than allowed.
#, php-format
@@ -7119,6 +7091,8 @@ msgid ""
"You already have created %d or more tags which is the maximum allowed number "
"of tags. Try using or deleting some existing tags."
msgstr ""
+"U hebt %d of meer labels aangemaakt. Meer labels aanmaken is niet mogelijk. "
+"Verwijder bestaande labels om nieuwe labels aan te kunnen maken."
#. TRANS: Client exception thrown trying to set one tag for more people than allowed.
#, php-format
@@ -7126,16 +7100,17 @@ msgid ""
"You already have %1$d or more people tagged %2$s, which is the maximum "
"allowed number.Try untagging others with the same tag first."
msgstr ""
+"U hebt al %1$d of meer mensen gelabeld met %2$s. Meer mensen labelen is niet "
+"mogelijk. Verwijder eerst labels van mensen om nieuwe mensen te kunnen "
+"labelen."
#. TRANS: Exception thrown when inserting a people tag subscription in the database fails.
-#, fuzzy
msgid "Adding people tag subscription failed."
-msgstr "Kon abonnement niet verwijderen."
+msgstr "Het abonneren op het persoonslabel is mislukt."
#. TRANS: Exception thrown when deleting a people tag subscription from the database fails.
-#, fuzzy
msgid "Removing people tag subscription failed."
-msgstr "Kon abonnement niet verwijderen."
+msgstr "Het uitschrijven van het persoonslabel is mislukt."
#. TRANS: Exception thrown when a right for a non-existing user profile is checked.
msgid "Missing profile."
@@ -7195,6 +7170,7 @@ msgstr "Welkom bij %1$s, @%2$s!"
#. TRANS: Exception thrown when trying view "repeated to me".
msgid "Not implemented since inbox change."
msgstr ""
+"Dit is nog niet geïmplementeerd sinds de wijzigingen in het Postvak IN."
#. TRANS: Server exception.
msgid "No single user defined for single-user mode."
@@ -7794,13 +7770,14 @@ msgstr "Gebruik deze methode niet!"
#. TRANS: Title in atom list notice feed. %1$s is a list name, %2$s is a tagger's nickname.
#, php-format
msgid "Timeline for people tagged #%1$s by %2$s"
-msgstr ""
+msgstr "Tijdlijn voor mensen die door %2$s met #%1$s zijn gelabeld"
#. TRANS: Message is used as a subtitle in atom list notice feed.
#. TRANS: %1$s is a tagger's nickname, %2$s is a list name, %3$s is a site name.
-#, fuzzy, php-format
+#, php-format
msgid "Updates from %1$s's %2$s people tag on %3$s!"
-msgstr "Updates van %1$s op %2$s."
+msgstr ""
+"Mededelingen van gebruikers met het persoonslabel %2$s door %1$s op %3$s"
#. TRANS: Title.
msgid "Notices where this attachment appears"
@@ -7903,7 +7880,6 @@ msgstr ""
"Mededelingen: %3$s"
#. TRANS: Error message text shown when a favorite could not be set because it has already been favorited.
-#, fuzzy
msgid "Could not create favorite: Already favorited."
msgstr ""
"Het was niet mogelijk een favoriet aan te maken. De mededeling is al "
@@ -7929,13 +7905,16 @@ msgstr "%1$s heeft de groep %2$s verlaten."
#. TRANS: %1$s is the tagged user, %2$s is the error message (no punctuation).
#, php-format
msgid "Error tagging %1$s: %2$s"
-msgstr ""
+msgstr "Fout tijdens het labelen van %1$s: %2$s"
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s en %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s heeft nu de tags %2$s"
+msgstr[1] "%1$s heeft nu de tags %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7944,7 +7923,7 @@ msgstr ", "
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "Ongeldig label: \"%s\"."
@@ -7952,13 +7931,16 @@ msgstr "Ongeldig label: \"%s\"."
#. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation).
#, php-format
msgid "Error untagging %1$s: %2$s"
-msgstr ""
+msgstr "Fout bij het label verwijderen van %1$s: %2$s"
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
-#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
+#, fuzzy, php-format
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] "De volgende labels zijn verwijderd van gebruiker %1$s: %2$s."
+msgstr[1] "De volgende labels zijn verwijderd van gebruiker %1$s: %2$s."
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -8185,16 +8167,14 @@ msgid "lists the groups you have joined"
msgstr "geeft de groepen waar u lid van bent weer"
#. TRANS: Help message for IM/SMS command "tag".
-#, fuzzy
msgctxt "COMMANDHELP"
msgid "tag a user"
-msgstr "Gebruiker labelen"
+msgstr "gebruiker labelen"
#. TRANS: Help message for IM/SMS command "untag".
-#, fuzzy
msgctxt "COMMANDHELP"
msgid "untag a user"
-msgstr "Gebruiker labelen"
+msgstr "label van gebruiker verwijderen"
#. TRANS: Help message for IM/SMS command "subscriptions".
msgctxt "COMMANDHELP"
@@ -9407,63 +9387,54 @@ msgid "No oEmbed API endpoint available."
msgstr "Er is geen API-eindpunt beschikbaar."
#. TRANS: Field label for people tag.
-#, fuzzy
msgctxt "LABEL"
msgid "Tag"
msgstr "Label"
#. TRANS: Field title for people tag.
-#, fuzzy
msgid "Change the tag (letters, numbers, -, ., and _ are allowed)."
-msgstr ""
-"Labels voor deze gebruiker (letters, cijfers, -, ., en _). Gebruik komma's "
-"of spaties als scheidingsteken."
+msgstr "Wijzigen het label (letters, cijfers, -, ., en _ zijn toegestaan)."
#. TRANS: Field title for description of people tag.
-#, fuzzy
msgid "Describe the people tag or topic."
-msgstr "Beschrijf de groep of het onderwerp."
+msgstr "Beschrijf het persoonslabel of het onderwerp."
#. TRANS: Field title for description of people tag.
#. TRANS: %d is the maximum number of characters for the description.
-#, fuzzy, php-format
+#, php-format
msgid "Describe the people tag or topic in %d character."
msgid_plural "Describe the people tag or topic in %d characters."
-msgstr[0] "Beschrijf de groep in %d teken of minder."
-msgstr[1] "Beschrijf de groep in %d tekens of minder."
+msgstr[0] "Beschrijf het persoonslabel of anderwerp in %d teken of minder."
+msgstr[1] "Beschrijf het persoonslabel of onderwerp in %d tekens of minder."
#. TRANS: Button title to delete a people tag.
-#, fuzzy
msgid "Delete this people tag."
-msgstr "Deze groep verwijderen."
+msgstr "Dit persoonslabel verwijderen."
#. TRANS: Header in people tag edit form.
msgid "Add or remove people"
-msgstr ""
+msgstr "Mensen toevoegen of verwijderen"
#. TRANS: Header in people tag edit form.
-#, fuzzy
msgctxt "HEADER"
msgid "Search"
msgstr "Zoeken"
#. TRANS: Menu item in people tag navigation panel.
-#, fuzzy
msgctxt "MENU"
msgid "People tag"
-msgstr "Gebruikers"
+msgstr "Persoonslabel"
#. TRANS: Menu item title in people tag navigation panel.
#. TRANS: %1$s is a tag, %2$s is a nickname.
-#, fuzzy, php-format
+#, php-format
msgid "%1$s tag by %2$s."
-msgstr "%1$s en %2$s"
+msgstr "Door %2$s als %1$s gelabeld"
#. TRANS: Menu item in people tag navigation panel.
-#, fuzzy
msgctxt "MENU"
msgid "Tagged"
-msgstr "Label"
+msgstr "Gelabeld"
#. TRANS: Menu item in people tag navigation panel.
#. TRANS: Menu item in local navigation menu.
@@ -9473,39 +9444,34 @@ msgstr "Abonnees"
#. TRANS: Menu item title in people tag navigation panel.
#. TRANS: %1$s is a tag, %2$s is a nickname.
-#, fuzzy, php-format
+#, php-format
msgid "Subscribers to %1$s tag by %2$s."
-msgstr "Geabonneerd op %s."
+msgstr "Abonnees op het label %1$s van %2$s."
#. TRANS: Menu item in people tag navigation panel.
-#, fuzzy
msgctxt "MENU"
msgid "Edit"
msgstr "Bewerken"
#. TRANS: Menu item title in people tag navigation panel.
#. TRANS: %s is a tag.
-#, fuzzy, php-format
+#, php-format
msgid "Edit %s tag by you."
-msgstr "Groep %s bewerken"
+msgstr "Uw label %s bewerken."
#. TRANS: Link description for link to list of users tagged with a tag.
-#, fuzzy
msgid "Tagged"
-msgstr "Label"
+msgstr "Gelabeld"
#. TRANS: Title for link to edit people tag settings.
-#, fuzzy
msgid "Edit people tag settings."
-msgstr "Profielinstellingen bewerken."
+msgstr "Persoonslabelinstellingen bewerken."
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Bewerken"
#. TRANS: Privacy mode text in people tag list item for private tags.
-#, fuzzy
msgctxt "MODE"
msgid "Private"
msgstr "Privé"
@@ -9513,29 +9479,26 @@ msgstr "Privé"
#. TRANS: Label in people tags widget.
msgctxt "LABEL"
msgid "Tags by you"
-msgstr ""
+msgstr "Uw labels"
#. TRANS: Fieldset legend in people tags widget.
-#, fuzzy
msgctxt "LEGEND"
msgid "Edit tags"
-msgstr "Bewerken"
+msgstr "Labels bewerken"
#. TRANS: Title for section contaning people tags with the most subscribers.
-#, fuzzy
msgid "People tags with most subscribers"
-msgstr "Gebruikers waarop %s een abonnement heeft."
+msgstr "Persoonslabels met de meeste abonnees"
#. TRANS: Tag summary. %1$d is the number of users tagged with the tag,
#. TRANS: %2$d is the number of subscribers to the tag.
-#, fuzzy, php-format
+#, php-format
msgid "Tagged: %1$d Subscribers: %2$d"
-msgstr "Abonnees van %1$s, pagina %2$d"
+msgstr "Gelabeld: %1$d Abonnees: %2$d"
#. TRANS: Title for page that displays people tags a user has subscribed to.
-#, fuzzy
msgid "People tag subscriptions"
-msgstr "Alle abonnementen"
+msgstr "Persoonslabelabonnementen"
#. TRANS: Menu item in personal group navigation menu.
#. TRANS: Menu item in settings navigation panel.
@@ -9566,13 +9529,11 @@ msgstr "deze gebruiker"
#. TRANS: Menu item in personal group navigation menu.
#. TRANS: Menu item in search group navigation panel.
#. TRANS: Menu item title in local navigation menu.
-#, fuzzy
msgctxt "MENU"
msgid "People tags"
-msgstr "Gebruikers"
+msgstr "Persoonslabels"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Gebruiker"
@@ -9696,9 +9657,8 @@ msgid "Recent tags"
msgstr "Recente labels"
#. TRANS: Menu item title in search group navigation panel.
-#, fuzzy
msgid "People tags"
-msgstr "Gebruikers"
+msgstr "Persoonslabels"
#. TRANS: Menu item in search group navigation panel.
msgctxt "MENU"
@@ -9987,9 +9947,9 @@ msgstr "Groepen waar %s lid van is."
#. TRANS: Menu item title in local navigation menu.
#. TRANS: %s is a user nickname.
-#, fuzzy, php-format
+#, php-format
msgid "People tags by %s."
-msgstr "Gebruikers met een abonnement op %s."
+msgstr "Persoonslabels door %s."
#. TRANS: Menu item in local navigation menu.
msgctxt "MENU"
@@ -10135,46 +10095,42 @@ msgstr[0] "Een persoon heeft deze mededeling herhaald."
msgstr[1] "%d personen hebben deze mededeling herhaald."
#. TRANS: Form legend.
-#, fuzzy, php-format
+#, php-format
msgid "Search and list people"
-msgstr "Site doorzoeken"
+msgstr "Mensen zoeken en in lijsten plaatsen"
#. TRANS: Dropdown option for searching in profiles.
-#, fuzzy
msgid "Everything"
-msgstr "Iedereen"
+msgstr "Alles"
#. TRANS: Dropdown option for searching in profiles.
-#, fuzzy
msgid "Fullname"
msgstr "Volledige naam"
#. TRANS: Dropdown option for searching in profiles.
msgid "URI (Remote users)"
-msgstr ""
+msgstr "URI (externe gebruikers)"
#. TRANS: Dropdown field label.
-#, fuzzy
msgctxt "LABEL"
msgid "Search in"
-msgstr "Site doorzoeken"
+msgstr "Zoeken in"
#. TRANS: Dropdown field title.
-#, fuzzy
msgid "Choose a field to search."
-msgstr "Kies een label om de lijst kleiner te maken."
+msgstr "Kies een veld om te doorzoeken."
#. TRANS: Form legend.
#. TRANS: %1$s is a nickname, $2$s is a people tag.
-#, fuzzy, php-format
+#, php-format
msgid "Untag %1$s as %2$s"
-msgstr "%1$s en %2$s"
+msgstr "Label %2$s van %1$s verwijderen"
#. TRANS: Legend on form to add a tag to a profile.
#. TRANS: %1$s is a nickname, %2$s ia a people tag.
-#, fuzzy, php-format
+#, php-format
msgid "Tag %1$s as %2$s"
-msgstr "RT @%1$s %2$s"
+msgstr "Label %2$s aan %1$s toevoegen"
#. TRANS: Title for top posters section.
msgid "Top posters"
@@ -10318,10 +10274,3 @@ msgstr "Ongeldige XML. De XRD-root mist."
#, php-format
msgid "Getting backup from file '%s'."
msgstr "De back-up wordt uit het bestand \"%s\" geladen."
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr ""
-#~ "U kunt alleen gebruikers labelen waarop u geabonneerd bent of die op u "
-#~ "geabonneerd zijn."
diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po
index b68cc0b82c..fa8e2f6753 100644
--- a/locale/pl/LC_MESSAGES/statusnet.po
+++ b/locale/pl/LC_MESSAGES/statusnet.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:33+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:30+0000\n"
"Last-Translator: Piotr Drąg \n"
"Language-Team: Polish \n"
"MIME-Version: 1.0\n"
@@ -20,11 +20,11 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && "
"(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pl\n"
"X-Message-Group: #out-statusnet-core\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -179,7 +179,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2289,7 +2289,6 @@ msgid "No tagger or ID."
msgstr "Brak pseudonimu lub identyfikatora."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
msgstr "Brak takiego użytkownika."
@@ -8002,9 +8001,13 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s - %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s - %2$s"
+msgstr[1] "%1$s - %2$s"
+msgstr[2] "%1$s - %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -8013,7 +8016,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "Nieprawidłowy znacznik: \"%s\""
@@ -8025,9 +8028,13 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9623,7 +9630,6 @@ msgid "Edit people tag settings."
msgstr "Zmodyfikuj ustawienia profilu"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Edycja"
@@ -9699,7 +9705,6 @@ msgid "People tags"
msgstr "Osoby"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Użytkownik"
@@ -10477,10 +10482,3 @@ msgstr "Nieprawidłowy kod XML, brak głównego XRD."
#, php-format
msgid "Getting backup from file '%s'."
msgstr "Pobieranie kopii zapasowej z pliku \"%s\"."
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr ""
-#~ "Można nadawać znaczniki tylko osobom, których subskrybujesz lub którzy "
-#~ "subskrybują ciebie."
diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po
index 5c365c3322..ea82e7c92b 100644
--- a/locale/pt/LC_MESSAGES/statusnet.po
+++ b/locale/pt/LC_MESSAGES/statusnet.po
@@ -17,17 +17,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:35+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:32+0000\n"
"Language-Team: Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -180,7 +180,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2257,9 +2257,8 @@ msgid "No tagger or ID."
msgstr "Nenhum utilizador ou ID."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
-msgstr "Utilizador não foi encontrado."
+msgstr "O utilizador não é local."
#. TRANS: Client error displayed when reting to edit a tag that was not self-created.
#, fuzzy
@@ -7978,9 +7977,12 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s - %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s - %2$s"
+msgstr[1] "%1$s - %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7989,7 +7991,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "Categoria inválida: \"%s\""
@@ -8001,9 +8003,12 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9589,7 +9594,6 @@ msgid "Edit people tag settings."
msgstr "Editar configurações do perfil"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Editar"
@@ -9666,7 +9670,6 @@ msgid "People tags"
msgstr "Pessoas"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Utilizador"
@@ -10437,8 +10440,3 @@ msgstr ""
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr "Só pode categorizar pessoas que subscreve ou os seus subscritores."
diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po
index d8385d73d1..3910881e8a 100644
--- a/locale/pt_BR/LC_MESSAGES/statusnet.po
+++ b/locale/pt_BR/LC_MESSAGES/statusnet.po
@@ -15,18 +15,18 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:37+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:33+0000\n"
"Language-Team: Brazilian Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt-br\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -49,7 +49,7 @@ msgstr ""
#. TRANS: Error message.
msgid "An error occurred."
-msgstr ""
+msgstr "Ocorreu um erro."
#. TRANS: Error message displayed when there is no StatusNet configuration file.
#, php-format
@@ -184,7 +184,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2282,7 +2282,6 @@ msgid "No tagger or ID."
msgstr "Nenhum apelido ou identificação."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
msgstr "Este usuário não existe."
@@ -7932,9 +7931,12 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s - %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s - %2$s"
+msgstr[1] "%1$s - %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7943,7 +7945,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "Etiqueta inválida: \"%s\"."
@@ -7955,9 +7957,12 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9551,7 +9556,6 @@ msgid "Edit people tag settings."
msgstr "Editar as configurações do perfil"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Editar"
@@ -9627,7 +9631,6 @@ msgid "People tags"
msgstr "Pessoas"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Usuário"
@@ -10396,8 +10399,3 @@ msgstr ""
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr "Você só pode etiquetar pessoas às quais assina ou que assinam você."
diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po
index 8455309f20..a839ab89f7 100644
--- a/locale/ru/LC_MESSAGES/statusnet.po
+++ b/locale/ru/LC_MESSAGES/statusnet.po
@@ -18,18 +18,18 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:39+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:35+0000\n"
"Language-Team: Russian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= "
"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -186,7 +186,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2282,7 +2282,6 @@ msgid "No tagger or ID."
msgstr "Нет имени или ID."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
msgstr "Нет такого пользователя."
@@ -7875,9 +7874,13 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s и %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s и %2$s"
+msgstr[1] "%1$s и %2$s"
+msgstr[2] "%1$s и %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7886,9 +7889,9 @@ msgstr ", "
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
-msgstr "Неверный тег «%s»."
+msgstr "Неверный тег: «%s»"
#. TRANS: Error displayed if untagging a user fails.
#. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation).
@@ -7898,9 +7901,13 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9470,7 +9477,6 @@ msgid "Edit people tag settings."
msgstr "Изменить настройки профиля."
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Редактировать"
@@ -9543,7 +9549,6 @@ msgid "People tags"
msgstr "Люди"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Пользователь"
@@ -10299,10 +10304,3 @@ msgstr "Неверный XML, отсутствует корень XRD."
#, php-format
msgid "Getting backup from file '%s'."
msgstr "Получение резервной копии из файла «%s»."
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr ""
-#~ "Вы можете помечать тегами только пользователей, на которых подписаны или "
-#~ "которые подписаны на Вас."
diff --git a/locale/statusnet.pot b/locale/statusnet.pot
index 9931d14901..b2b1106692 100644
--- a/locale/statusnet.pot
+++ b/locale/statusnet.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -201,7 +201,7 @@ msgstr ""
#: actions/addpeopletag.php:101 actions/atompubfavoritefeed.php:69
#: actions/atompubmembershipfeed.php:71 actions/atompubshowfavorite.php:75
#: actions/atompubshowmembership.php:72 actions/removepeopletag.php:102
-#: actions/subscribe.php:110 lib/command.php:435 lib/command.php:491
+#: actions/subscribe.php:110 lib/command.php:435 lib/command.php:494
msgid "No such profile."
msgstr ""
@@ -234,7 +234,7 @@ msgstr ""
#: actions/addpeopletag.php:155 actions/removepeopletag.php:157
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -247,7 +247,7 @@ msgstr ""
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
#. TRANS: Server error when page not found (404).
-#: actions/all.php:68 actions/public.php:99 actions/replies.php:93
+#: actions/all.php:68 actions/public.php:104 actions/replies.php:93
#: actions/showfavorites.php:140 actions/showprofiletag.php:95
#: actions/tag.php:52
msgid "No such page."
@@ -330,7 +330,7 @@ msgstr ""
#: actions/repliesrss.php:38 actions/rsd.php:114 actions/showfavorites.php:106
#: actions/showprofiletag.php:73 actions/showprofiletag.php:107
#: actions/userbyid.php:75 actions/usergroups.php:95 actions/userrss.php:41
-#: actions/userxrd.php:60 actions/xrds.php:71 lib/command.php:618
+#: actions/userxrd.php:60 actions/xrds.php:71 lib/command.php:624
#: lib/galleryaction.php:61 lib/mailbox.php:79 lib/profileaction.php:77
msgid "No such user."
msgstr ""
@@ -353,7 +353,7 @@ msgstr ""
#. TRANS: %s is a username.
#. TRANS: Menu item title in settings navigation panel.
#. TRANS: %s is a username.
-#: actions/all.php:94 actions/all.php:185 actions/allrss.php:110
+#: actions/all.php:94 actions/all.php:194 actions/allrss.php:110
#: actions/apitimelinefriends.php:209 actions/apitimelinehome.php:113
#: lib/adminpanelnav.php:73 lib/personalgroupnav.php:77 lib/settingsnav.php:73
#, php-format
@@ -419,7 +419,7 @@ msgid ""
msgstr ""
#. TRANS: H1 text for page when viewing a list for self.
-#: actions/all.php:182
+#: actions/all.php:191
msgid "You and friends"
msgstr ""
@@ -504,7 +504,7 @@ msgstr ""
#. TRANS: Server exception thrown on Profile design page when updating design settings fails.
#: actions/apiaccountupdatedeliverydevice.php:136
#: actions/confirmaddress.php:122 actions/emailsettings.php:353
-#: actions/emailsettings.php:499 actions/profilesettings.php:348
+#: actions/emailsettings.php:504 actions/profilesettings.php:348
#: actions/smssettings.php:301 actions/smssettings.php:454
#: actions/urlsettings.php:213 actions/userdesignsettings.php:315
msgid "Could not update user."
@@ -1587,7 +1587,7 @@ msgstr ""
#: actions/grouprss.php:105 actions/groupunblock.php:90
#: actions/joingroup.php:82 actions/joingroup.php:95 actions/leavegroup.php:82
#: actions/leavegroup.php:95 actions/makeadmin.php:92
-#: actions/showgroup.php:134 actions/showgroup.php:143 lib/command.php:168
+#: actions/showgroup.php:136 actions/showgroup.php:145 lib/command.php:168
#: lib/command.php:389
msgid "No such group."
msgstr ""
@@ -1860,7 +1860,7 @@ msgstr ""
#: actions/avatarbynickname.php:60 actions/blockedfromgroup.php:73
#: actions/editgroup.php:85 actions/groupdesignsettings.php:84
#: actions/grouplogo.php:86 actions/groupmembers.php:76
-#: actions/groupqueue.php:77 actions/grouprss.php:89 actions/showgroup.php:116
+#: actions/groupqueue.php:77 actions/grouprss.php:89 actions/showgroup.php:118
msgid "No nickname."
msgstr ""
@@ -2217,7 +2217,7 @@ msgid "The address \"%s\" has been confirmed for your account."
msgstr ""
#. TRANS: Title for page with a conversion (multiple notices in context).
-#: actions/conversation.php:112
+#: actions/conversation.php:113
msgid "Conversation"
msgstr ""
@@ -3015,13 +3015,13 @@ msgstr ""
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
#. TRANS: Server error thrown on database error adding Instant Messaging confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
-#: actions/emailsettings.php:419 actions/imsettings.php:366
+#: actions/emailsettings.php:421 actions/imsettings.php:366
#: actions/smssettings.php:365
msgid "Could not insert confirmation code."
msgstr ""
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
-#: actions/emailsettings.php:426
+#: actions/emailsettings.php:431
msgid ""
"A confirmation code was sent to the email address you added. Check your "
"inbox (and spam box!) for the code and instructions on how to use it."
@@ -3030,59 +3030,59 @@ msgstr ""
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
#. TRANS: Message given canceling Instant Messaging address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
-#: actions/emailsettings.php:446 actions/imsettings.php:395
+#: actions/emailsettings.php:451 actions/imsettings.php:395
#: actions/smssettings.php:399
msgid "No pending confirmation to cancel."
msgstr ""
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
-#: actions/emailsettings.php:451
+#: actions/emailsettings.php:456
msgid "That is the wrong email address."
msgstr ""
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
-#: actions/emailsettings.php:460
+#: actions/emailsettings.php:465
msgid "Could not delete email confirmation."
msgstr ""
#. TRANS: Message given after successfully canceling e-mail address confirmation.
-#: actions/emailsettings.php:465
+#: actions/emailsettings.php:470
msgid "Email confirmation cancelled."
msgstr ""
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
-#: actions/emailsettings.php:484
+#: actions/emailsettings.php:489
msgid "That is not your email address."
msgstr ""
#. TRANS: Message given after successfully removing a registered e-mail address.
-#: actions/emailsettings.php:505
+#: actions/emailsettings.php:510
msgid "The email address was removed."
msgstr ""
#. TRANS: Form validation error displayed when trying to remove an incoming e-mail address while no address has been set.
-#: actions/emailsettings.php:519 actions/smssettings.php:555
+#: actions/emailsettings.php:524 actions/smssettings.php:555
msgid "No incoming email address."
msgstr ""
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
#. TRANS: Server error displayed when the user could not be updated in SMS settings.
-#: actions/emailsettings.php:531 actions/emailsettings.php:555
+#: actions/emailsettings.php:536 actions/emailsettings.php:560
#: actions/smssettings.php:566 actions/smssettings.php:591
msgid "Could not update user record."
msgstr ""
#. TRANS: Message given after successfully removing an incoming e-mail address.
#. TRANS: Confirmation text after updating SMS settings.
-#: actions/emailsettings.php:535 actions/smssettings.php:570
+#: actions/emailsettings.php:540 actions/smssettings.php:570
msgid "Incoming email address removed."
msgstr ""
#. TRANS: Message given after successfully adding an incoming e-mail address.
#. TRANS: Confirmation text after updating SMS settings.
-#: actions/emailsettings.php:559 actions/smssettings.php:595
+#: actions/emailsettings.php:564 actions/smssettings.php:595
msgid "New incoming email address added."
msgstr ""
@@ -3512,7 +3512,7 @@ msgstr ""
#. TRANS: Text for notice search results is the query had no results.
#. TRANS: Message on the "People search" page where a query has no results.
#. TRANS: Output when there are no results for a search.
-#: actions/groupsearch.php:82 actions/noticesearch.php:122
+#: actions/groupsearch.php:82 actions/noticesearch.php:155
#: actions/peoplesearch.php:87 actions/profilecompletion.php:150
msgid "No results."
msgstr ""
@@ -3722,18 +3722,18 @@ msgstr ""
#. TRANS: Form validation message when providing an e-mail address that does not validate.
#. TRANS: %s is an invalid e-mail address.
-#: actions/invite.php:79
+#: actions/invite.php:86
#, php-format
msgid "Invalid email address: %s."
msgstr ""
#. TRANS: Page title when invitations have been sent.
-#: actions/invite.php:118
+#: actions/invite.php:125
msgid "Invitations sent"
msgstr ""
#. TRANS: Page title when inviting potential users.
-#: actions/invite.php:121
+#: actions/invite.php:128
msgid "Invite new users"
msgstr ""
@@ -3741,7 +3741,7 @@ msgstr ""
#. TRANS: is already subscribed to one or more users with the given e-mail address(es).
#. TRANS: Plural form is based on the number of reported already subscribed e-mail addresses.
#. TRANS: Followed by a bullet list.
-#: actions/invite.php:141
+#: actions/invite.php:148
msgid "You are already subscribed to this user:"
msgid_plural "You are already subscribed to these users:"
msgstr[0] ""
@@ -3749,7 +3749,7 @@ msgstr[1] ""
#. TRANS: Used as list item for already subscribed users (%1$s is nickname, %2$s is e-mail address).
#. TRANS: Used as list item for already registered people (%1$s is nickname, %2$s is e-mail address).
-#: actions/invite.php:147 actions/invite.php:161
+#: actions/invite.php:154 actions/invite.php:168
#, php-format
msgctxt "INVITE"
msgid "%1$s (%2$s)"
@@ -3758,7 +3758,7 @@ msgstr ""
#. TRANS: Message displayed inviting users to use a StatusNet site while the invited user
#. TRANS: already uses a this StatusNet site. Plural form is based on the number of
#. TRANS: reported already present people. Followed by a bullet list.
-#: actions/invite.php:155
+#: actions/invite.php:162
msgid "This person is already a user and you were automatically subscribed:"
msgid_plural ""
"These people are already users and you were automatically subscribed to them:"
@@ -3768,7 +3768,7 @@ msgstr[1] ""
#. TRANS: Message displayed inviting users to use a StatusNet site. Plural form is
#. TRANS: based on the number of invitations sent. Followed by a bullet list of
#. TRANS: e-mail addresses to which invitations were sent.
-#: actions/invite.php:169
+#: actions/invite.php:176
msgid "Invitation sent to the following person:"
msgid_plural "Invitations sent to the following people:"
msgstr[0] ""
@@ -3776,41 +3776,41 @@ msgstr[1] ""
#. TRANS: Generic message displayed after sending out one or more invitations to
#. TRANS: people to join a StatusNet site.
-#: actions/invite.php:179
+#: actions/invite.php:186
msgid ""
"You will be notified when your invitees accept the invitation and register "
"on the site. Thanks for growing the community!"
msgstr ""
#. TRANS: Form instructions.
-#: actions/invite.php:192
+#: actions/invite.php:199
msgid ""
"Use this form to invite your friends and colleagues to use this service."
msgstr ""
#. TRANS: Field label for a list of e-mail addresses.
-#: actions/invite.php:219
+#: actions/invite.php:226
msgid "Email addresses"
msgstr ""
#. TRANS: Tooltip for field label for a list of e-mail addresses.
-#: actions/invite.php:222
+#: actions/invite.php:229
msgid "Addresses of friends to invite (one per line)."
msgstr ""
#. TRANS: Field label for a personal message to send to invitees.
-#: actions/invite.php:226
+#: actions/invite.php:233
msgid "Personal message"
msgstr ""
#. TRANS: Tooltip for field label for a personal message to send to invitees.
-#: actions/invite.php:229
+#: actions/invite.php:236
msgid "Optionally add a personal message to the invitation."
msgstr ""
#. TRANS: Send button for inviting friends
#. TRANS: Button text for sending notice.
-#: actions/invite.php:233 lib/noticeform.php:302
+#: actions/invite.php:240 lib/noticeform.php:302
msgctxt "BUTTON"
msgid "Send"
msgstr ""
@@ -3818,7 +3818,7 @@ msgstr ""
#. TRANS: Subject for invitation email. Note that 'them' is correct as a gender-neutral
#. TRANS: singular 3rd-person pronoun in English. %1$s is the inviting user, $2$s is
#. TRANS: the StatusNet sitename.
-#: actions/invite.php:265
+#: actions/invite.php:272
#, php-format
msgid "%1$s has invited you to join them on %2$s"
msgstr ""
@@ -3828,7 +3828,7 @@ msgstr ""
#. TRANS: StatusNet sitename, %3$s is the site URL, %4$s is the personal message from the
#. TRANS: inviting user, %s%5 a link to the timeline for the inviting user, %s$6 is a link
#. TRANS: to register with the StatusNet site.
-#: actions/invite.php:272
+#: actions/invite.php:279
#, php-format
msgid ""
"%1$s has invited you to join them on %2$s (%3$s).\n"
@@ -4176,8 +4176,8 @@ msgstr ""
#. TRANS: Client error displayed trying to send a notice without content.
#. TRANS: Command exception text shown when trying to send a direct message to another user without content.
#. TRANS: Command exception text shown when trying to reply to a notice without providing content for the reply.
-#: actions/newmessage.php:151 actions/newnotice.php:140 lib/command.php:599
-#: lib/command.php:688
+#: actions/newmessage.php:151 actions/newnotice.php:140 lib/command.php:605
+#: lib/command.php:694
msgid "No content!"
msgstr ""
@@ -4188,7 +4188,7 @@ msgstr ""
#. TRANS: Client error displayed trying to send a direct message to self.
#. TRANS: Error text shown when trying to send a direct message to self.
-#: actions/newmessage.php:178 lib/command.php:626
+#: actions/newmessage.php:178 lib/command.php:632
msgid ""
"Don't send a message to yourself; just say it to yourself quietly instead."
msgstr ""
@@ -4202,7 +4202,7 @@ msgstr ""
#. TRANS: %s is the direct message recipient.
#. TRANS: Message given have sent a direct message to another user.
#. TRANS: %s is the name of the other user.
-#: actions/newmessage.php:202 lib/command.php:634
+#: actions/newmessage.php:202 lib/command.php:640
#, php-format
msgid "Direct message to %s sent."
msgstr ""
@@ -4227,7 +4227,7 @@ msgstr ""
#. TRANS: Instructions for Notice search page.
#. TRANS: %%site.name%% is the name of the StatusNet site.
-#: actions/noticesearch.php:69
+#: actions/noticesearch.php:95
#, php-format
msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
@@ -4235,20 +4235,20 @@ msgid ""
msgstr ""
#. TRANS: Title of the page where users can search for notices.
-#: actions/noticesearch.php:80
+#: actions/noticesearch.php:106
msgid "Text search"
msgstr ""
#. TRANS: Test in RSS notice search.
#. TRANS: %1$s is the query, %2$s is the StatusNet site name.
-#: actions/noticesearch.php:95
+#: actions/noticesearch.php:121
#, php-format
msgid "Search results for \"%1$s\" on %2$s"
msgstr ""
#. TRANS: Text for logged in users making a query for notices without results.
#. TRANS: This message contains a Markdown link.
-#: actions/noticesearch.php:128
+#: actions/noticesearch.php:161
#, php-format
msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
@@ -4257,7 +4257,7 @@ msgstr ""
#. TRANS: Text for not logged in users making a query for notices without results.
#. TRANS: This message contains Markdown links.
-#: actions/noticesearch.php:133
+#: actions/noticesearch.php:166
#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and be the first to "
@@ -5385,46 +5385,46 @@ msgstr ""
#. TRANS: Client error displayed when requesting a public timeline page beyond the page limit.
#. TRANS: %s is the page limit.
-#: actions/public.php:83
+#: actions/public.php:84
#, php-format
msgid "Beyond the page limit (%s)."
msgstr ""
#. TRANS: Server error displayed when a public timeline cannot be retrieved.
-#: actions/public.php:93
+#: actions/public.php:98
msgid "Could not retrieve public stream."
msgstr ""
#. TRANS: Title for all public timeline pages but the first.
#. TRANS: %d is the page number.
-#: actions/public.php:131
+#: actions/public.php:136
#, php-format
msgid "Public timeline, page %d"
msgstr ""
#. TRANS: Title for the first public timeline page.
#. TRANS: Menu item title in search group navigation panel.
-#: actions/public.php:134 lib/publicgroupnav.php:65
+#: actions/public.php:139 lib/publicgroupnav.php:65
msgid "Public timeline"
msgstr ""
#. TRANS: Link description for public timeline feed.
-#: actions/public.php:162
+#: actions/public.php:167
msgid "Public Stream Feed (RSS 1.0)"
msgstr ""
#. TRANS: Link description for public timeline feed.
-#: actions/public.php:167
+#: actions/public.php:172
msgid "Public Stream Feed (RSS 2.0)"
msgstr ""
#. TRANS: Link description for public timeline feed.
-#: actions/public.php:172
+#: actions/public.php:177
msgid "Public Stream Feed (Atom)"
msgstr ""
#. TRANS: Text displayed for public feed when there are no public notices.
-#: actions/public.php:178
+#: actions/public.php:183
#, php-format
msgid ""
"This is the public timeline for %%site.name%% but no one has posted anything "
@@ -5432,12 +5432,12 @@ msgid ""
msgstr ""
#. TRANS: Additional text displayed for public feed when there are no public notices for a logged in user.
-#: actions/public.php:182
+#: actions/public.php:187
msgid "Be the first to post!"
msgstr ""
#. TRANS: Additional text displayed for public feed when there are no public notices for a not logged in user.
-#: actions/public.php:187
+#: actions/public.php:192
#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to post!"
@@ -5445,7 +5445,7 @@ msgstr ""
#. TRANS: Message for not logged in users at an invite-only site trying to view the public feed of notices.
#. TRANS: This message contains Markdown links. Please mind the formatting.
-#: actions/public.php:237
+#: actions/public.php:242
#, php-format
msgid ""
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
@@ -5456,7 +5456,7 @@ msgstr ""
#. TRANS: Message for not logged in users at a closed site trying to view the public feed of notices.
#. TRANS: This message contains Markdown links. Please mind the formatting.
-#: actions/public.php:244
+#: actions/public.php:249
#, php-format
msgid ""
"This is %%site.name%%, a [micro-blogging](http://en.wikipedia.org/wiki/Micro-"
@@ -6328,44 +6328,44 @@ msgid "This is a way to share what you like."
msgstr ""
#. TRANS: Page title for first group page. %s is a group name.
-#: actions/showgroup.php:75
+#: actions/showgroup.php:77
#, php-format
msgid "%s group"
msgstr ""
#. TRANS: Page title for any but first group page.
#. TRANS: %1$s is a group name, $2$s is a page number.
-#: actions/showgroup.php:79
+#: actions/showgroup.php:81
#, php-format
msgid "%1$s group, page %2$d"
msgstr ""
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:221
+#: actions/showgroup.php:227
#, php-format
msgid "Notice feed for %s group (RSS 1.0)"
msgstr ""
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:228
+#: actions/showgroup.php:234
#, php-format
msgid "Notice feed for %s group (RSS 2.0)"
msgstr ""
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:235
+#: actions/showgroup.php:241
#, php-format
msgid "Notice feed for %s group (Atom)"
msgstr ""
#. TRANS: Tooltip for feed link. %s is a group nickname.
-#: actions/showgroup.php:241
+#: actions/showgroup.php:247
#, php-format
msgid "FOAF for %s group"
msgstr ""
#. TRANS: Header for mini list of group members on a group page (h2).
-#: actions/showgroup.php:278
+#: actions/showgroup.php:284
msgid "Members"
msgstr ""
@@ -6377,7 +6377,7 @@ msgstr ""
#. TRANS: Text for user subscriber statistics if user has no subscribers.
#. TRANS: Text for user user group membership statistics if user is not a member of any group.
#. TRANS: Default content for section/sidebar widget.
-#: actions/showgroup.php:284 actions/showprofiletag.php:305
+#: actions/showgroup.php:290 actions/showprofiletag.php:305
#: actions/showprofiletag.php:343 lib/peopletags.php:166
#: lib/profileaction.php:139 lib/profileaction.php:176
#: lib/profileaction.php:326 lib/section.php:107
@@ -6385,24 +6385,24 @@ msgid "(None)"
msgstr ""
#. TRANS: Link to all group members from mini list of group members if group has more than n members.
-#: actions/showgroup.php:293
+#: actions/showgroup.php:299
msgid "All members"
msgstr ""
#. TRANS: Header for group statistics on a group page (h2).
#. TRANS: H2 text for user statistics.
-#: actions/showgroup.php:324 lib/profileaction.php:233
+#: actions/showgroup.php:330 lib/profileaction.php:233
msgid "Statistics"
msgstr ""
#. TRANS: Label for group creation date.
-#: actions/showgroup.php:329
+#: actions/showgroup.php:335
msgctxt "LABEL"
msgid "Created"
msgstr ""
#. TRANS: Label for member count in statistics on group page.
-#: actions/showgroup.php:334
+#: actions/showgroup.php:340
msgctxt "LABEL"
msgid "Members"
msgstr ""
@@ -6411,7 +6411,7 @@ msgstr ""
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: %%%%action.register%%%% is the URL for registration, %%%%doc.help%%%% is a URL to help.
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:349
+#: actions/showgroup.php:355
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -6424,7 +6424,7 @@ msgstr ""
#. TRANS: Notice on group pages for anonymous users for StatusNet sites that accept no new registrations.
#. TRANS: **%s** is the group alias, %%%%site.name%%%% is the site name,
#. TRANS: This message contains Markdown links. Ensure they are formatted correctly: [Description](link).
-#: actions/showgroup.php:359
+#: actions/showgroup.php:365
#, php-format
msgid ""
"**%s** is a user group on %%%%site.name%%%%, a [micro-blogging](http://en."
@@ -6434,7 +6434,7 @@ msgid ""
msgstr ""
#. TRANS: Title for list of group administrators on a group page.
-#: actions/showgroup.php:400
+#: actions/showgroup.php:406
msgctxt "TITLE"
msgid "Admins"
msgstr ""
@@ -7304,7 +7304,7 @@ msgstr ""
#. TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged.
#. TRANS: Error displayed when trying to tag a user that cannot be tagged.
#: actions/tagprofile.php:56 classes/Profile_tag.php:147 lib/command.php:440
-#: lib/command.php:496
+#: lib/command.php:499
msgid "You cannot tag this user."
msgstr ""
@@ -7968,7 +7968,7 @@ msgid "Could not create login token for %s"
msgstr ""
#. TRANS: Exception thrown when database name or Data Source Name could not be found.
-#: classes/Memcached_DataObject.php:556
+#: classes/Memcached_DataObject.php:555
msgid "No database name or DSN found anywhere."
msgstr ""
@@ -8067,30 +8067,30 @@ msgid "Problem saving notice."
msgstr ""
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
-#: classes/Notice.php:1042
+#: classes/Notice.php:1077
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
-#: classes/Notice.php:1132
+#: classes/Notice.php:1167
msgid "Problem saving group inbox."
msgstr ""
#. TRANS: Server exception thrown when saving profile_tag inbox fails.
-#: classes/Notice.php:1194
+#: classes/Notice.php:1231
msgid "Problem saving profile_tag inbox."
msgstr ""
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
-#: classes/Notice.php:1312
+#: classes/Notice.php:1349
#, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr ""
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
-#: classes/Notice.php:1804
+#: classes/Notice.php:1841
#, php-format
msgid "RT @%1$s %2$s"
msgstr ""
@@ -8270,7 +8270,7 @@ msgid "Could not set group membership."
msgstr ""
#. TRANS: Server exception thrown when saving local group information failed.
-#: classes/User_group.php:588
+#: classes/User_group.php:590
msgid "Could not save local group info."
msgstr ""
@@ -8375,7 +8375,7 @@ msgstr ""
#. TRANS: Placeholder text for inline reply form. Clicking in this box will turn it into a mini notice form.
#. TRANS: Field label for reply mini form.
-#: lib/action.php:365 lib/threadednoticelist.php:339
+#: lib/action.php:365 lib/threadednoticelist.php:359
msgid "Write a reply..."
msgstr ""
@@ -9020,7 +9020,7 @@ msgstr ""
#. TRANS: Command exception text shown when a last user notice is requested and it does not exist.
#. TRANS: Error text shown when a last user notice is requested and it does not exist.
-#: lib/command.php:99 lib/command.php:737
+#: lib/command.php:99 lib/command.php:743
msgid "User has no last notice."
msgstr ""
@@ -9100,48 +9100,54 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
-#: lib/command.php:475
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
+#: lib/command.php:476
#, php-format
msgid "%1$s was tagged %2$s"
-msgstr ""
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
-#: lib/command.php:478 lib/command.php:528 lib/threadednoticelist.php:400
+#: lib/command.php:481 lib/command.php:534 lib/threadednoticelist.php:420
msgid ", "
msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#: lib/command.php:506
+#: lib/command.php:509
#, php-format
msgid "Invalid tag: \"%s\""
msgstr ""
#. TRANS: Error displayed if untagging a user fails.
#. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation).
-#: lib/command.php:518
+#: lib/command.php:521
#, php-format
msgid "Error untagging %1$s: %2$s"
msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
-#: lib/command.php:525
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
+#: lib/command.php:529
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
-#: lib/command.php:547
+#: lib/command.php:553
#, php-format
msgctxt "WHOIS"
msgid "%1$s (%2$s)"
msgstr ""
#. TRANS: Whois output. %s is the full name of the queried user.
-#: lib/command.php:551
+#: lib/command.php:557
#, php-format
msgid "Fullname: %s"
msgstr ""
@@ -9149,7 +9155,7 @@ msgstr ""
#. TRANS: Whois output. %s is the location of the queried user.
#. TRANS: Profile info line in notification e-mail.
#. TRANS: %s is a location.
-#: lib/command.php:555 lib/mail.php:339
+#: lib/command.php:561 lib/mail.php:339
#, php-format
msgid "Location: %s"
msgstr ""
@@ -9157,20 +9163,20 @@ msgstr ""
#. TRANS: Whois output. %s is the homepage of the queried user.
#. TRANS: Profile info line in notification e-mail.
#. TRANS: %s is a homepage.
-#: lib/command.php:559 lib/mail.php:344
+#: lib/command.php:565 lib/mail.php:344
#, php-format
msgid "Homepage: %s"
msgstr ""
#. TRANS: Whois output. %s is the bio information of the queried user.
-#: lib/command.php:563
+#: lib/command.php:569
#, php-format
msgid "About: %s"
msgstr ""
#. TRANS: Command exception text shown when trying to send a direct message to a remote user (a user not registered at the current server).
#. TRANS: %s is a remote profile.
-#: lib/command.php:592
+#: lib/command.php:598
#, php-format
msgid ""
"%s is a remote profile; you can only send direct messages to users on the "
@@ -9181,7 +9187,7 @@ msgstr ""
#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters.
#. TRANS: Message given when a status is too long. %1$s is the maximum number of characters,
#. TRANS: %2$s is the number of characters sent (used for plural).
-#: lib/command.php:609 lib/implugin.php:492
+#: lib/command.php:615 lib/implugin.php:492
#, php-format
msgid "Message too long - maximum is %1$d character, you sent %2$d."
msgid_plural "Message too long - maximum is %1$d characters, you sent %2$d."
@@ -9189,25 +9195,25 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Error text shown when trying to send a direct message to a user without a mutual subscription (each user must be subscribed to the other).
-#: lib/command.php:622
+#: lib/command.php:628
msgid "You can't send a message to this user."
msgstr ""
#. TRANS: Error text shown sending a direct message fails with an unknown reason.
-#: lib/command.php:637
+#: lib/command.php:643
msgid "Error sending direct message."
msgstr ""
#. TRANS: Message given having repeated a notice from another user.
#. TRANS: %s is the name of the user for which the notice was repeated.
-#: lib/command.php:661
+#: lib/command.php:667
#, php-format
msgid "Notice from %s repeated."
msgstr ""
#. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural.
#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters.
-#: lib/command.php:698
+#: lib/command.php:704
#, php-format
msgid "Notice too long - maximum is %1$d character, you sent %2$d."
msgid_plural "Notice too long - maximum is %1$d characters, you sent %2$d."
@@ -9216,100 +9222,100 @@ msgstr[1] ""
#. TRANS: Text shown having sent a reply to a notice successfully.
#. TRANS: %s is the nickname of the user of the notice the reply was sent to.
-#: lib/command.php:711
+#: lib/command.php:717
#, php-format
msgid "Reply to %s sent."
msgstr ""
#. TRANS: Error text shown when a reply to a notice fails with an unknown reason.
-#: lib/command.php:714
+#: lib/command.php:720
msgid "Error saving notice."
msgstr ""
#. TRANS: Error text shown when no username was provided when issuing a subscribe command.
-#: lib/command.php:761
+#: lib/command.php:767
msgid "Specify the name of the user to subscribe to."
msgstr ""
#. TRANS: Command exception text shown when trying to subscribe to an OMB profile using the subscribe command.
-#: lib/command.php:770
+#: lib/command.php:776
msgid "Can't subscribe to OMB profiles by command."
msgstr ""
#. TRANS: Text shown after having subscribed to another user successfully.
#. TRANS: %s is the name of the user the subscription was requested for.
-#: lib/command.php:778
+#: lib/command.php:784
#, php-format
msgid "Subscribed to %s."
msgstr ""
#. TRANS: Error text shown when no username was provided when issuing an unsubscribe command.
#. TRANS: Error text shown when no username was provided when issuing the command.
-#: lib/command.php:799 lib/command.php:910
+#: lib/command.php:805 lib/command.php:916
msgid "Specify the name of the user to unsubscribe from."
msgstr ""
#. TRANS: Text shown after having unsubscribed from another user successfully.
#. TRANS: %s is the name of the user the unsubscription was requested for.
-#: lib/command.php:810
+#: lib/command.php:816
#, php-format
msgid "Unsubscribed from %s."
msgstr ""
#. TRANS: Error text shown when issuing the command "off" with a setting which has not yet been implemented.
#. TRANS: Error text shown when issuing the command "on" with a setting which has not yet been implemented.
-#: lib/command.php:830 lib/command.php:856
+#: lib/command.php:836 lib/command.php:862
msgid "Command not yet implemented."
msgstr ""
#. TRANS: Text shown when issuing the command "off" successfully.
-#: lib/command.php:834
+#: lib/command.php:840
msgid "Notification off."
msgstr ""
#. TRANS: Error text shown when the command "off" fails for an unknown reason.
-#: lib/command.php:837
+#: lib/command.php:843
msgid "Can't turn off notification."
msgstr ""
#. TRANS: Text shown when issuing the command "on" successfully.
-#: lib/command.php:860
+#: lib/command.php:866
msgid "Notification on."
msgstr ""
#. TRANS: Error text shown when the command "on" fails for an unknown reason.
-#: lib/command.php:863
+#: lib/command.php:869
msgid "Can't turn on notification."
msgstr ""
#. TRANS: Error text shown when issuing the login command while login is disabled.
-#: lib/command.php:877
+#: lib/command.php:883
msgid "Login command is disabled."
msgstr ""
#. TRANS: Text shown after issuing the login command successfully.
#. TRANS: %s is a logon link..
-#: lib/command.php:890
+#: lib/command.php:896
#, php-format
msgid "This link is useable only once and is valid for only 2 minutes: %s."
msgstr ""
#. TRANS: Text shown after issuing the lose command successfully (stop another user from following the current user).
#. TRANS: %s is the name of the user the unsubscription was requested for.
-#: lib/command.php:919
+#: lib/command.php:925
#, php-format
msgid "Unsubscribed %s."
msgstr ""
#. TRANS: Text shown after requesting other users a user is subscribed to without having any subscriptions.
-#: lib/command.php:937
+#: lib/command.php:943
msgid "You are not subscribed to anyone."
msgstr ""
#. TRANS: Text shown after requesting other users a user is subscribed to.
#. TRANS: This message supports plural forms. This message is followed by a
#. TRANS: hard coded space and a comma separated list of subscribed users.
-#: lib/command.php:942
+#: lib/command.php:948
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] ""
@@ -9317,14 +9323,14 @@ msgstr[1] ""
#. TRANS: Text shown after requesting other users that are subscribed to a user
#. TRANS: (followers) without having any subscribers.
-#: lib/command.php:964
+#: lib/command.php:970
msgid "No one is subscribed to you."
msgstr ""
#. TRANS: Text shown after requesting other users that are subscribed to a user (followers).
#. TRANS: This message supports plural forms. This message is followed by a
#. TRANS: hard coded space and a comma separated list of subscribing users.
-#: lib/command.php:969
+#: lib/command.php:975
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] ""
@@ -9332,190 +9338,190 @@ msgstr[1] ""
#. TRANS: Text shown after requesting groups a user is subscribed to without having
#. TRANS: any group subscriptions.
-#: lib/command.php:991
+#: lib/command.php:997
msgid "You are not a member of any groups."
msgstr ""
#. TRANS: Text shown after requesting groups a user is subscribed to.
#. TRANS: This message supports plural forms. This message is followed by a
#. TRANS: hard coded space and a comma separated list of subscribed groups.
-#: lib/command.php:996
+#: lib/command.php:1002
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] ""
msgstr[1] ""
#. TRANS: Header line of help text for commands.
-#: lib/command.php:1010
+#: lib/command.php:1016
msgctxt "COMMANDHELP"
msgid "Commands:"
msgstr ""
#. TRANS: Help message for IM/SMS command "on".
-#: lib/command.php:1012
+#: lib/command.php:1018
msgctxt "COMMANDHELP"
msgid "turn on notifications"
msgstr ""
#. TRANS: Help message for IM/SMS command "off".
-#: lib/command.php:1014
+#: lib/command.php:1020
msgctxt "COMMANDHELP"
msgid "turn off notifications"
msgstr ""
#. TRANS: Help message for IM/SMS command "help".
-#: lib/command.php:1016
+#: lib/command.php:1022
msgctxt "COMMANDHELP"
msgid "show this help"
msgstr ""
#. TRANS: Help message for IM/SMS command "follow ".
-#: lib/command.php:1018
+#: lib/command.php:1024
msgctxt "COMMANDHELP"
msgid "subscribe to user"
msgstr ""
#. TRANS: Help message for IM/SMS command "groups".
-#: lib/command.php:1020
+#: lib/command.php:1026
msgctxt "COMMANDHELP"
msgid "lists the groups you have joined"
msgstr ""
#. TRANS: Help message for IM/SMS command "tag".
-#: lib/command.php:1022
+#: lib/command.php:1028
msgctxt "COMMANDHELP"
msgid "tag a user"
msgstr ""
#. TRANS: Help message for IM/SMS command "untag".
-#: lib/command.php:1024
+#: lib/command.php:1030
msgctxt "COMMANDHELP"
msgid "untag a user"
msgstr ""
#. TRANS: Help message for IM/SMS command "subscriptions".
-#: lib/command.php:1026
+#: lib/command.php:1032
msgctxt "COMMANDHELP"
msgid "list the people you follow"
msgstr ""
#. TRANS: Help message for IM/SMS command "subscribers".
-#: lib/command.php:1028
+#: lib/command.php:1034
msgctxt "COMMANDHELP"
msgid "list the people that follow you"
msgstr ""
#. TRANS: Help message for IM/SMS command "leave ".
-#: lib/command.php:1030
+#: lib/command.php:1036
msgctxt "COMMANDHELP"
msgid "unsubscribe from user"
msgstr ""
#. TRANS: Help message for IM/SMS command "d ".
-#: lib/command.php:1032
+#: lib/command.php:1038
msgctxt "COMMANDHELP"
msgid "direct message to user"
msgstr ""
#. TRANS: Help message for IM/SMS command "get ".
-#: lib/command.php:1034
+#: lib/command.php:1040
msgctxt "COMMANDHELP"
msgid "get last notice from user"
msgstr ""
#. TRANS: Help message for IM/SMS command "whois ".
-#: lib/command.php:1036
+#: lib/command.php:1042
msgctxt "COMMANDHELP"
msgid "get profile info on user"
msgstr ""
#. TRANS: Help message for IM/SMS command "lose ".
-#: lib/command.php:1038
+#: lib/command.php:1044
msgctxt "COMMANDHELP"
msgid "force user to stop following you"
msgstr ""
#. TRANS: Help message for IM/SMS command "fav ".
-#: lib/command.php:1040
+#: lib/command.php:1046
msgctxt "COMMANDHELP"
msgid "add user's last notice as a 'fave'"
msgstr ""
#. TRANS: Help message for IM/SMS command "fav #".
-#: lib/command.php:1042
+#: lib/command.php:1048
msgctxt "COMMANDHELP"
msgid "add notice with the given id as a 'fave'"
msgstr ""
#. TRANS: Help message for IM/SMS command "repeat #".
-#: lib/command.php:1044
+#: lib/command.php:1050
msgctxt "COMMANDHELP"
msgid "repeat a notice with a given id"
msgstr ""
#. TRANS: Help message for IM/SMS command "repeat ".
-#: lib/command.php:1046
+#: lib/command.php:1052
msgctxt "COMMANDHELP"
msgid "repeat the last notice from user"
msgstr ""
#. TRANS: Help message for IM/SMS command "reply #".
-#: lib/command.php:1048
+#: lib/command.php:1054
msgctxt "COMMANDHELP"
msgid "reply to notice with a given id"
msgstr ""
#. TRANS: Help message for IM/SMS command "reply ".
-#: lib/command.php:1050
+#: lib/command.php:1056
msgctxt "COMMANDHELP"
msgid "reply to the last notice from user"
msgstr ""
#. TRANS: Help message for IM/SMS command "join ".
-#: lib/command.php:1052
+#: lib/command.php:1058
msgctxt "COMMANDHELP"
msgid "join group"
msgstr ""
#. TRANS: Help message for IM/SMS command "login".
-#: lib/command.php:1054
+#: lib/command.php:1060
msgctxt "COMMANDHELP"
msgid "Get a link to login to the web interface"
msgstr ""
#. TRANS: Help message for IM/SMS command "drop ".
-#: lib/command.php:1056
+#: lib/command.php:1062
msgctxt "COMMANDHELP"
msgid "leave group"
msgstr ""
#. TRANS: Help message for IM/SMS command "stats".
-#: lib/command.php:1058
+#: lib/command.php:1064
msgctxt "COMMANDHELP"
msgid "get your stats"
msgstr ""
#. TRANS: Help message for IM/SMS command "stop".
#. TRANS: Help message for IM/SMS command "quit".
-#: lib/command.php:1060 lib/command.php:1062
+#: lib/command.php:1066 lib/command.php:1068
msgctxt "COMMANDHELP"
msgid "same as 'off'"
msgstr ""
#. TRANS: Help message for IM/SMS command "sub ".
-#: lib/command.php:1064
+#: lib/command.php:1070
msgctxt "COMMANDHELP"
msgid "same as 'follow'"
msgstr ""
#. TRANS: Help message for IM/SMS command "unsub ".
-#: lib/command.php:1066
+#: lib/command.php:1072
msgctxt "COMMANDHELP"
msgid "same as 'leave'"
msgstr ""
#. TRANS: Help message for IM/SMS command "last ".
-#: lib/command.php:1068
+#: lib/command.php:1074
msgctxt "COMMANDHELP"
msgid "same as 'get'"
msgstr ""
@@ -9529,15 +9535,15 @@ msgstr ""
#. TRANS: Help message for IM/SMS command "untrack all".
#. TRANS: Help message for IM/SMS command "tracks".
#. TRANS: Help message for IM/SMS command "tracking".
-#: lib/command.php:1070 lib/command.php:1072 lib/command.php:1076
-#: lib/command.php:1078 lib/command.php:1080 lib/command.php:1082
+#: lib/command.php:1076 lib/command.php:1078 lib/command.php:1082
#: lib/command.php:1084 lib/command.php:1086 lib/command.php:1088
+#: lib/command.php:1090 lib/command.php:1092 lib/command.php:1094
msgctxt "COMMANDHELP"
msgid "not yet implemented."
msgstr ""
#. TRANS: Help message for IM/SMS command "nudge ".
-#: lib/command.php:1074
+#: lib/command.php:1080
msgctxt "COMMANDHELP"
msgid "remind a user to update."
msgstr ""
@@ -10503,22 +10509,22 @@ msgid "api"
msgstr ""
#. TRANS: Client exception thrown when no author for an activity was found.
-#: lib/microappplugin.php:336
+#: lib/microappplugin.php:344
msgid "Cannot get author for activity."
msgstr ""
#. TRANS: Client exception.
-#: lib/microappplugin.php:374
+#: lib/microappplugin.php:382
msgid "Bookmark not posted to this group."
msgstr ""
#. TRANS: Client exception.
-#: lib/microappplugin.php:388
+#: lib/microappplugin.php:396
msgid "Object not posted to this user."
msgstr ""
#. TRANS: Server exception thrown when a micro app plugin uses a target that cannot be handled.
-#: lib/microappplugin.php:392
+#: lib/microappplugin.php:400
msgid "Do not know how to handle this kind of target."
msgstr ""
@@ -10575,7 +10581,7 @@ msgstr ""
#. TRANS: Header in notice list.
#. TRANS: Header for Notices section.
-#: lib/noticelist.php:85 lib/threadednoticelist.php:65
+#: lib/noticelist.php:85 lib/threadednoticelist.php:76
msgctxt "HEADER"
msgid "Notices"
msgstr ""
@@ -11469,7 +11475,7 @@ msgstr ""
#. TRANS: Link to show replies for a notice.
#. TRANS: %d is the number of replies to a notice and used for plural.
-#: lib/threadednoticelist.php:298
+#: lib/threadednoticelist.php:318
#, php-format
msgid "Show reply"
msgid_plural "Show all %d replies"
@@ -11477,28 +11483,28 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Reference to the logged in user in favourite list.
-#: lib/threadednoticelist.php:364
+#: lib/threadednoticelist.php:384
msgctxt "FAVELIST"
msgid "You"
msgstr ""
#. TRANS: For building a list such as "You, bob, mary and 5 others have favored this notice".
#. TRANS: %1$s is a list of users, separated by a separator (default: ", "), %2$s is the last user in the list.
-#: lib/threadednoticelist.php:403
+#: lib/threadednoticelist.php:423
#, php-format
msgctxt "FAVELIST"
msgid "%1$s and %2$s"
msgstr ""
#. TRANS: List message for notice favoured by logged in user.
-#: lib/threadednoticelist.php:428
+#: lib/threadednoticelist.php:448
msgctxt "FAVELIST"
msgid "You have favored this notice."
msgstr ""
#. TRANS: List message for favoured notices.
#. TRANS: %d is the number of users that have favoured a notice.
-#: lib/threadednoticelist.php:432
+#: lib/threadednoticelist.php:452
#, php-format
msgid "One person has favored this notice."
msgid_plural "%d people have favored this notice."
@@ -11506,14 +11512,14 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: List message for notice repeated by logged in user.
-#: lib/threadednoticelist.php:486
+#: lib/threadednoticelist.php:506
msgctxt "REPEATLIST"
msgid "You have repeated this notice."
msgstr ""
#. TRANS: List message for repeated notices.
#. TRANS: %d is the number of users that have repeated a notice.
-#: lib/threadednoticelist.php:490
+#: lib/threadednoticelist.php:510
#, php-format
msgid "One person has repeated this notice."
msgid_plural "%d people have repeated this notice."
@@ -11596,7 +11602,7 @@ msgid "Private?"
msgstr ""
#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received.
-#: lib/toselector.php:159
+#: lib/toselector.php:163
#, php-format
msgid "Unknown to value: \"%s\"."
msgstr ""
diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po
index efc015d42c..92af296819 100644
--- a/locale/sv/LC_MESSAGES/statusnet.po
+++ b/locale/sv/LC_MESSAGES/statusnet.po
@@ -13,17 +13,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:42+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:36+0000\n"
"Language-Team: Swedish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: sv\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -33,27 +33,34 @@ msgid ""
"contact them at %2$s to make sure. Otherwise, wait a few minutes and try "
"again."
msgstr ""
+"Databasen för %1$s svarar inte korrekt, så webbplatsen kommer inte att "
+"fungera korrekt. Webbplatsadministratörerna känner säkert till problemet, "
+"men du kan kontakta dem på %2$s för försäkra dig. Annars vänta ett par "
+"minuter och försök igen."
#. TRANS: Error message.
msgid ""
"An important error occured, probably related to email setup. Check logfiles "
"for more info."
msgstr ""
+"Ett viktigt fel uppstod, förmodligen relaterat till e-postinställningar. "
+"Kontrollera loggfiler för mer info."
#. TRANS: Error message.
msgid "An error occurred."
-msgstr ""
+msgstr "Ett fel uppstod."
#. TRANS: Error message displayed when there is no StatusNet configuration file.
#, php-format
msgid ""
"No configuration file found. Try running the installation program first."
msgstr ""
+"Ingen konfigurationsfil hittades. Prova att köra installationsprogrammet "
+"först."
#. TRANS: Error message displayed when trying to access a non-existing page.
-#, fuzzy
msgid "Unknown page"
-msgstr "Okänd"
+msgstr "Okänd sida"
#. TRANS: Error message displayed when trying to perform an undefined action.
#. TRANS: Title for password recovery page when an unknown action has been specified.
@@ -158,28 +165,28 @@ msgstr "Ingen sådan profil."
#. TRANS: Client error displayed when referring to a non-exsting people tag.
#. TRANS: Client error displayed when referring to non-existing people tag.
#. TRANS: Client error displayed trying to reference a non-existing people tag.
-#, fuzzy
msgid "No such people tag."
-msgstr "Ingen sådan tagg."
+msgstr "Ingen sådan persontagg."
#. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile.
-#, fuzzy
msgid "You cannot tag an OMB 0.1 remote profile with this action."
-msgstr "Du kan inte prenumerera på en 0MB 0.1-fjärrprofil med denna åtgärd."
+msgstr "Du kan inte tagga en OMB 0.1-fjärrprofil med denna åtgärd."
#. TRANS: Client error displayed when an unknown error occurs while tagging a user.
#. TRANS: %s is a username.
#, php-format
msgid "There was an unexpected error while tagging %s."
-msgstr ""
+msgstr "Det uppstod ett oväntat fel vid taggning av %s."
#. TRANS: Client error displayed when an unknown error occurs while tagging a user.
#. TRANS: %s is a profile URL.
-#, php-format
+#, fuzzy, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
+"Det uppstod ett problem vid taggning av %s. Fjärrservern svarar förmodligen "
+"inte korrekt, prova att försöka igen senare."
#. TRANS: Title after subscribing to a people tag.
#. TRANS: Page title when subscription succeeded.
@@ -424,7 +431,7 @@ msgstr "Kunde inte uppdatera din profils utseende."
#. TRANS: Title for Atom feed.
msgctxt "ATOM"
msgid "Main"
-msgstr ""
+msgstr "Huvud"
#. TRANS: Title for Atom feed. %s is a user nickname.
#. TRANS: Message is used as link title. %s is a user nickname.
@@ -506,7 +513,6 @@ msgid "Recipient user not found."
msgstr "Mottagare hittades inte."
#. TRANS: Client error displayed trying to direct message another user who's not a friend (403).
-#, fuzzy
msgid "Cannot send direct messages to users who aren't your friend."
msgstr "Kan inte skicka direktmeddelanden till användare som inte är din vän."
@@ -561,9 +567,8 @@ msgid "You cannot unfollow yourself."
msgstr "Du kan inte sluta följa dig själv."
#. TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists.
-#, fuzzy
msgid "Two valid IDs or nick names must be supplied."
-msgstr "Två giltiga användar-ID:n eller screen_names måste tillhandahållas."
+msgstr "Två giltiga ID eller smeknamn måste lämnas."
#. TRANS: Client error displayed when a source user could not be determined showing friendship.
msgid "Could not determine source user."
@@ -766,69 +771,61 @@ msgstr ""
#. TRANS: API validation exception thrown when alias is the same as nickname.
#. TRANS: Group create form validation error.
-#, fuzzy
msgid "Alias cannot be the same as nickname."
-msgstr "Alias kan inte vara samma som smeknamn."
+msgstr "Alias kan inte vara samma som smeknamn."
#. TRANS: Client error displayed when referring to a non-existing list.
#. TRANS: Client error displayed trying to perform an action related to a non-existing list.
#. TRANS: Client error displayed when referring to a non-existing list.
-#, fuzzy
msgid "List not found."
-msgstr "API-metod hittades inte."
+msgstr "Lista hittades inte."
#. TRANS: Client error displayed when trying to update another user's list.
msgid "You cannot update lists that do not belong to you."
-msgstr ""
+msgstr "Du kan inte uppdatera listor som inte tillhör dig."
#. TRANS: Client error displayed when an unknown error occurs updating a list.
#. TRANS: Client error displayed when an unknown error occurs viewing list members.
#. TRANS: Client error displayed when an unknown error occurs in the list subscribers action.
#. TRANS: Client error displayed when an unknown error occurs unsubscribing from a list.
msgid "An error occured."
-msgstr ""
+msgstr "Ett fel uppstod."
#. TRANS: Client error displayed when trying to delete another user's list.
msgid "You cannot delete lists that do not belong to you."
-msgstr ""
+msgstr "Du kan inte radera listor som inte tillhör dig."
#. TRANS: Client error displayed when referring to a non-list member.
-#, fuzzy
msgid "The specified user is not a member of this list."
-msgstr "Användare är inte en gruppmedlem."
+msgstr "Den angivna användaren är inte medlem av denna lista."
#. TRANS: Client error displayed when trying to add members to a list without having the right to do so.
-#, fuzzy
msgid "You are not allowed to add members to this list."
-msgstr "Du får inte ta bort denna grupp."
+msgstr "Du får inte lägga till medlemmar i denna lista."
#. TRANS: Client error displayed when trying to modify list members without specifying them.
-#, fuzzy
msgid "You must specify a member."
-msgstr "Saknar profil."
+msgstr "Du måste ange en medlem."
#. TRANS: Client error displayed when trying to remove members from a list without having the right to do so.
-#, fuzzy
msgid "You are not allowed to remove members from this list."
-msgstr "Du får inte ta bort denna grupp."
+msgstr "Du får inte ta bort medlemmar från denna lista."
#. TRANS: Client error displayed when trying to remove a list member that is not part of a list.
msgid "The user you are trying to remove from the list is not a member."
-msgstr ""
+msgstr "Användaren du försöker ta bort från listan är inte en medlem."
#. TRANS: Client error displayed when trying to create a list without a name.
-#, fuzzy
msgid "A list must have a name."
-msgstr "Alias kan inte vara samma som smeknamn."
+msgstr "En lista måste ha ett namn."
#. TRANS: Client error displayed when a membership check for a user is nagative.
msgid "The specified user is not a subscriber of this list."
-msgstr ""
+msgstr "Den angivna användaren är inte en prenumerant av denna lista."
#. TRANS: Client error displayed when trying to unsubscribe from a non-subscribed list.
-#, fuzzy
msgid "You are not subscribed to this list."
-msgstr "Du är inte prenumerat hos den profilen."
+msgstr "Du prenumererar inte på denna lista."
#. TRANS: Client error displayed when uploading a media file has failed.
msgid "Upload failed."
@@ -847,7 +844,6 @@ msgid "Invalid request token."
msgstr "Ogiltig begäran-token."
#. TRANS: Client error given when an invalid request token was passed to the OAuth API.
-#, fuzzy
msgid "Request token already authorized."
msgstr "Begäran-token är redan auktoriserad."
@@ -856,9 +852,8 @@ msgid "Invalid nickname / password!"
msgstr "Ogiltigt smeknamn / lösenord!"
#. TRANS: Server error displayed when a database action fails.
-#, fuzzy
msgid "Database error inserting oauth_token_association."
-msgstr "Databasfel vid infogning av OAuth-applikationsanvändare."
+msgstr "Databasfel vid infogning av oauth_token_association."
#. TRANS: Client error given on when invalid data was passed through a form in the OAuth API.
#. TRANS: Unexpected validation error on avatar upload form.
@@ -885,15 +880,15 @@ msgstr "Tillåt eller neka åtkomst"
#. TRANS: User notification of external application requesting account access.
#. TRANS: %3$s is the access type requested (read-write or read-only), %4$s is the StatusNet sitename.
-#, fuzzy, php-format
+#, php-format
msgid ""
"An application would like the ability to %3$s your %4$s "
"account data. You should only give access to your %4$s account to third "
"parties you trust."
msgstr ""
-"Applikationen %1$s av %2$s vill att "
-"möjligheten att %3$s din %4$s kontoinformation. Du bör bara "
-"ge tillgång till ditt %4$s-konto till tredje-parter du litar på."
+"En applikation vill att möjligheten att %3$s dina %4$s-"
+"kontouppgifter. Du bör bara ge tillgång till ditt %4$s-konto till tredje-"
+"parter du litar på."
#. TRANS: User notification of external application requesting account access.
#. TRANS: %1$s is the application name requesting access, %2$s is the organisation behind the application,
@@ -945,37 +940,36 @@ msgid "Allow"
msgstr "Tillåt"
#. TRANS: Form instructions.
-#, fuzzy
msgid "Authorize access to your account information."
-msgstr "Tillåt eller neka åtkomst till din kontoinformation."
+msgstr "Bevilja åtkomst till din kontoinformation."
#. TRANS: Header for user notification after revoking OAuth access to an application.
-#, fuzzy
msgid "Authorization canceled."
-msgstr "Bekräftelse för snabbmeddelanden avbruten."
+msgstr "Tillstånd återkallas."
#. TRANS: User notification after revoking OAuth access to an application.
#. TRANS: %s is an OAuth token.
-#, fuzzy, php-format
+#, php-format
msgid "The request token %s has been revoked."
-msgstr "Begäran-token %s har nekats och återkallats."
+msgstr "Begäran-token %s har återkallats."
#. TRANS: Title of the page notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth.
-#, fuzzy
msgid "You have successfully authorized the application"
-msgstr "Du har inte tillstånd."
+msgstr "Du har nu auktoriserat applikationen"
#. TRANS: Message notifying the user that an anonymous client application was successfully authorized to access the user's account with OAuth.
msgid ""
"Please return to the application and enter the following security code to "
"complete the process."
msgstr ""
+"Gå tillbaka till applikationen och ange följande säkerhetskod för att "
+"slutföra processen."
#. TRANS: Title of the page notifying the user that the client application was successfully authorized to access the user's account with OAuth.
#. TRANS: %s is the authorised application name.
-#, fuzzy, php-format
+#, php-format
msgid "You have successfully authorized %s"
-msgstr "Du har inte tillstånd."
+msgstr "Du har nu godkänt %s"
#. TRANS: Message notifying the user that the client application was successfully authorized to access the user's account with OAuth.
#. TRANS: %s is the authorised application name.
@@ -984,6 +978,8 @@ msgid ""
"Please return to %s and enter the following security code to complete the "
"process."
msgstr ""
+"Gå tillbaka till %s och skriv in följande säkerhetskod för att slutföra "
+"processen."
#. TRANS: Client error displayed trying to delete a status not using POST or DELETE.
#. TRANS: POST and DELETE should not be translated.
@@ -1008,15 +1004,14 @@ msgstr "Ingen sådan notis."
#. TRANS: Client exception thrown when using an unsupported HTTP method.
#. TRANS: Client error shown when using a non-supported HTTP method.
#. TRANS: Client exception thrown when using an unsupported HTTP method.
-#, fuzzy
msgid "HTTP method not supported."
-msgstr "API-metod hittades inte."
+msgstr "HTTP-metoden stöds inte."
#. TRANS: Exception thrown requesting an unsupported notice output format.
#. TRANS: %s is the requested output format.
-#, fuzzy, php-format
+#, php-format
msgid "Unsupported format: %s."
-msgstr "Format som inte stödjs."
+msgstr "Format som inte stöds: %s."
#. TRANS: Client error displayed requesting a deleted status.
msgid "Status deleted."
@@ -1028,18 +1023,17 @@ msgstr "Ingen status med det ID:t hittades."
#. TRANS: Client error displayed when trying to delete a notice not using the Atom format.
msgid "Can only delete using the Atom format."
-msgstr ""
+msgstr "Kan bara ta bort med hjälp av Atom-formatet."
#. TRANS: Client error displayed when a user has no rights to delete notices of other users.
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
-#, fuzzy
msgid "Cannot delete this notice."
msgstr "Kan inte ta bort denna notis."
#. TRANS: Confirmation of notice deletion in API. %d is the ID (number) of the deleted notice.
-#, fuzzy, php-format
+#, php-format
msgid "Deleted notice %d"
-msgstr "Ta bort notis"
+msgstr "Tagit bort notis %d"
#. TRANS: Client error displayed when the parameter "status" is missing.
msgid "Client must provide a 'status' parameter with a value."
@@ -1050,22 +1044,21 @@ msgstr "Klient måste tillhandahålla en 'status'-parameter med ett värde."
#. TRANS: Client error displayed when the parameter "status" is missing.
#. TRANS: %d is the maximum number of character for a notice.
#. TRANS: Error message in incoming mail handler used when an incoming e-mail contains too many characters.
-#, fuzzy, php-format
+#, php-format
msgid "That's too long. Maximum notice size is %d character."
msgid_plural "That's too long. Maximum notice size is %d characters."
msgstr[0] "Det är för långt. Maximal notisstorlek är %d tecken."
msgstr[1] "Det är för långt. Maximal notisstorlek är %d tecken."
#. TRANS: Client error displayed when replying to a non-existing notice.
-#, fuzzy
msgid "Parent notice not found."
-msgstr "API-metod hittades inte."
+msgstr "Föräldernotis hittades inte."
#. TRANS: Client error displayed exceeding the maximum notice length.
#. TRANS: %d is the maximum lenth for a notice.
#. TRANS: Client error displayed exceeding the maximum notice length.
#. TRANS: %d is the maximum length for a notice.
-#, fuzzy, php-format
+#, php-format
msgid "Maximum notice size is %d character, including attachment URL."
msgid_plural "Maximum notice size is %d characters, including attachment URL."
msgstr[0] "Maximal notisstorlek är %d tecken, inklusive webbadress för bilaga."
@@ -1085,15 +1078,15 @@ msgstr "%1$s / Favoriter från %2$s"
#. TRANS: Subtitle for timeline of most recent favourite notices by a user.
#. TRANS: %1$s is the StatusNet sitename, %2$s is a user's full name,
#. TRANS: %3$s is a user nickname.
-#, fuzzy, php-format
+#, php-format
msgid "%1$s updates favorited by %2$s / %3$s."
-msgstr "%1$s uppdateringar markerade som favorit av %2$s / %2$s."
+msgstr "%1$s-uppdateringar markerade som favorit av %2$s / %3$s."
#. TRANS: Server error displayed whe trying to get a timeline fails.
#. TRANS: %s is the error message.
-#, fuzzy, php-format
+#, php-format
msgid "Could not generate feed for list - %s"
-msgstr "Kunde inte skapa inloggnings-token för %s"
+msgstr "Kunde inte skapa flöde för lista - %s"
#. TRANS: Title for timeline of most recent mentions of a user.
#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname.
@@ -1132,7 +1125,7 @@ msgstr "Upprepat till %s"
#. TRANS: %1$s is the sitename, %2$s is a user nickname, %3$s is a user profile name.
#, fuzzy, php-format
msgid "%1$s notices that were to repeated to %2$s / %3$s."
-msgstr "%1$s uppdateringar med svar på uppdatering från %2$s / %3$s."
+msgstr "%1$s-notiser som upprepades för %2$s / %3$s."
#. TRANS: Title of list of repeated notices of the logged in user.
#. TRANS: %s is the nickname of the logged in user.
@@ -1168,15 +1161,15 @@ msgstr "Bara användaren kan lägga till sin egen tidslinje."
#. TRANS: Client error displayed when using another format than AtomPub.
msgid "Only accept AtomPub for Atom feeds."
-msgstr ""
+msgstr "Accepterar endast AtomPub för Atom-flöden."
#. TRANS: Client error displayed attempting to post an empty API notice.
msgid "Atom post must not be empty."
-msgstr ""
+msgstr "Atom-inlägg får inte vara tomt."
#. TRANS: Client error displayed attempting to post an API that is not well-formed XML.
msgid "Atom post must be well-formed XML."
-msgstr ""
+msgstr "Atom-post måste vara välformaterad XML."
#. TRANS: Client error displayed when not using an Atom entry.
msgid "Atom post must be an Atom entry."
@@ -1184,25 +1177,25 @@ msgstr ""
#. TRANS: Client error displayed when not using the POST verb. Do not translate POST.
msgid "Can only handle POST activities."
-msgstr ""
+msgstr "Kan bara hantera POST-aktiviteter."
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
#, php-format
msgid "Cannot handle activity object type \"%s\"."
-msgstr ""
+msgstr "Kan inte hantera aktivitetsobjekttyp \"%s\"."
#. TRANS: Client error displayed when posting a notice without content through the API.
#. TRANS: %d is the notice ID (number).
-#, fuzzy, php-format
+#, php-format
msgid "No content for notice %d."
-msgstr "Hitta innehåll i notiser"
+msgstr "Ingen innehåll för notis %d ."
#. TRANS: Client error displayed when using another format than AtomPub.
#. TRANS: %s is the notice URI.
-#, fuzzy, php-format
+#, php-format
msgid "Notice with URI \"%s\" already exists."
-msgstr "Notis med den ID:n finns inte."
+msgstr "Notis med URI \"%s\" finns redan."
#. TRANS: Server error for unfinished API method showTrends.
msgid "API method under construction."
@@ -1261,29 +1254,28 @@ msgstr "Inget smeknamn eller ID."
#. TRANS: Client error displayed trying to approve group membership while not logged in.
#. TRANS: Client error displayed when trying to leave a group while not logged in.
-#, fuzzy
msgid "Must be logged in."
-msgstr "Inte inloggad."
+msgstr "Måste vara inloggad"
#. TRANS: Client error displayed trying to approve group membership while not a group administrator.
#. TRANS: Client error displayed when trying to approve or cancel a group join request without
#. TRANS: being a group administrator.
msgid "Only group admin can approve or cancel join requests."
msgstr ""
+"Enda gruppadministratör kan godkänna eller avbryta anslutningsförfrågningar."
#. TRANS: Client error displayed trying to approve group membership without specifying a profile to approve.
#. TRANS: Client error displayed trying to approve subscriptionswithout specifying a profile to approve.
-#, fuzzy
msgid "Must specify a profile."
-msgstr "Saknar profil."
+msgstr "Måste ange en profil."
#. TRANS: Client error displayed trying to approve group membership for a non-existing request.
#. TRANS: %s is a nickname.
#. TRANS: Client error displayed when trying to approve a non-existing group join request.
#. TRANS: %s is a user nickname.
-#, fuzzy, php-format
+#, php-format
msgid "%s is not in the moderation queue for this group."
-msgstr "En lista av användarna i denna grupp."
+msgstr "%s är inte i moderationskön för denna grupp."
#. TRANS: Client error displayed trying to approve/deny group membership.
#. TRANS: Client error displayed trying to approve/deny subscription.
@@ -1310,16 +1302,16 @@ msgstr "%1$ss status den %2$s"
#. TRANS: Message on page for group admin after approving a join request.
msgid "Join request approved."
-msgstr ""
+msgstr "Anslutningsbegäran godkänd."
#. TRANS: Message on page for group admin after rejecting a join request.
msgid "Join request canceled."
-msgstr ""
+msgstr "Anslutningsbegäran avbruten."
#. TRANS: Client error displayed trying to approve subscription for a non-existing request.
-#, fuzzy, php-format
+#, php-format
msgid "%s is not in the moderation queue for your subscriptions."
-msgstr "En lista av användarna i denna grupp."
+msgstr "%s är inte i moderationskön för dina prenumerationer."
#. TRANS: Server error displayed when cancelling a queued subscription request fails.
#. TRANS: %1$s is the leaving user's nickname, $2$s is the nickname for which the leave failed.
@@ -1584,9 +1576,8 @@ msgid "Backup account"
msgstr ""
#. TRANS: Client exception thrown when trying to backup an account while not logged in.
-#, fuzzy
msgid "Only logged-in users can backup their account."
-msgstr "Bara inloggade användaren kan upprepa notiser."
+msgstr "Endast inloggade användare kan säkerhetskopiera sitt konto."
#. TRANS: Client exception thrown when trying to backup an account without having backup rights.
msgid "You may not backup your account."
@@ -1609,7 +1600,7 @@ msgstr "Bakgrund"
#. TRANS: Title for submit button to backup an account on the backup account page.
msgid "Backup your account."
-msgstr ""
+msgstr "Säkerhetskopiera ditt konto."
#. TRANS: Client error displayed when blocking a user that has already been blocked.
msgid "You already blocked that user."
@@ -1787,10 +1778,9 @@ msgstr "Konversationer"
#. TRANS: Title for conversation page.
#. TRANS: Title for page that shows a notice.
-#, fuzzy
msgctxt "TITLE"
msgid "Notice"
-msgstr "Notiser"
+msgstr "Notis"
#. TRANS: Client exception displayed trying to delete a user account while not logged in.
#, fuzzy
@@ -2287,9 +2277,8 @@ msgid "No tagger or ID."
msgstr "Inget smeknamn eller ID."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
-msgstr "Ingen sådan användare."
+msgstr "Inte en lokal användare."
#. TRANS: Client error displayed when reting to edit a tag that was not self-created.
#, fuzzy
@@ -8000,9 +7989,12 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s - %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s - %2$s"
+msgstr[1] "%1$s - %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -8011,7 +8003,7 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "Ogiltig tagg: \"%s\""
@@ -8023,9 +8015,12 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9607,7 +9602,6 @@ msgid "Edit people tag settings."
msgstr "Redigera profilinställningar"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Redigera"
@@ -9683,7 +9677,6 @@ msgid "People tags"
msgstr "Personer"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Användare"
@@ -10447,10 +10440,3 @@ msgstr ""
#, php-format
msgid "Getting backup from file '%s'."
msgstr ""
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr ""
-#~ "Du kan bara tagga personer du prenumererar på eller som prenumererar på "
-#~ "dig."
diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po
index 6e479bb907..2061e59bc1 100644
--- a/locale/te/LC_MESSAGES/statusnet.po
+++ b/locale/te/LC_MESSAGES/statusnet.po
@@ -10,17 +10,17 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:44+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:37+0000\n"
"Language-Team: Telugu \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: te\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -173,7 +173,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -758,9 +758,8 @@ msgstr "మారుపేరు ముద్దుపేరూ ఒకటే క
#. TRANS: Client error displayed when referring to a non-existing list.
#. TRANS: Client error displayed trying to perform an action related to a non-existing list.
#. TRANS: Client error displayed when referring to a non-existing list.
-#, fuzzy
msgid "List not found."
-msgstr "వాడుకరి దొరకలేదు."
+msgstr "జాబితా దొరకలేదు."
#. TRANS: Client error displayed when trying to update another user's list.
msgid "You cannot update lists that do not belong to you."
@@ -770,7 +769,6 @@ msgstr ""
#. TRANS: Client error displayed when an unknown error occurs viewing list members.
#. TRANS: Client error displayed when an unknown error occurs in the list subscribers action.
#. TRANS: Client error displayed when an unknown error occurs unsubscribing from a list.
-#, fuzzy
msgid "An error occured."
msgstr "ఒక పొరపాటు దొర్లింది."
@@ -812,9 +810,8 @@ msgid "The specified user is not a subscriber of this list."
msgstr ""
#. TRANS: Client error displayed when trying to unsubscribe from a non-subscribed list.
-#, fuzzy
msgid "You are not subscribed to this list."
-msgstr "మీరు ఎవరికీ చందాచేరలేదు."
+msgstr "ఈ జాబితాకి మీరు చందాచేరలేదు."
#. TRANS: Client error displayed when uploading a media file has failed.
msgid "Upload failed."
@@ -2241,14 +2238,12 @@ msgid "No tagger or ID."
msgstr "Jabber ID లేదు."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
-msgstr "అటువంటి వాడుకరి లేరు."
+msgstr "స్థానిక వాడుకరి కాదు."
#. TRANS: Client error displayed when reting to edit a tag that was not self-created.
-#, fuzzy
msgid "You must be the creator of the tag to edit it."
-msgstr "గుంపుని మార్చడానికి మీరు నిర్వాహకులయి ఉండాలి."
+msgstr "ట్యాగును మార్చడానికి మీరు దాని సృష్టికర్త అయివుండాలి."
#. TRANS: Form instruction for edit people tag form.
#, fuzzy
@@ -2943,9 +2938,8 @@ msgid "IM Preferences"
msgstr "IM అభిరుచులు"
#. TRANS: Checkbox label in IM preferences form.
-#, fuzzy
msgid "Send me notices"
-msgstr "సైటు గమనిక"
+msgstr "నాకు నోటీసులు పంపించు"
#. TRANS: Checkbox label in IM preferences form.
msgid "Post a notice when my status changes."
@@ -4149,10 +4143,9 @@ msgid "Show private tags."
msgstr ""
#. TRANS: Checkbox label to show public tags.
-#, fuzzy
msgctxt "LABEL"
msgid "Public"
-msgstr "ప్రజా"
+msgstr "బహిరంగం"
#. TRANS: Checkbox title.
#, fuzzy
@@ -5111,9 +5104,9 @@ msgstr ""
#. TRANS: RSS reply feed description.
#. TRANS: %1$s is a user nickname, %2$s is the StatusNet site name.
-#, fuzzy, php-format
+#, php-format
msgid "Replies to %1$s on %2$s."
-msgstr "%2$sలో %1$sకి స్పందనలు!"
+msgstr "%2$sలో %1$sకి స్పందనలు."
#. TRANS: Client exception displayed when trying to restore an account while not logged in.
#, fuzzy
@@ -5569,9 +5562,8 @@ msgstr ""
#. TRANS: Link for more "People tagged x by a user"
#. TRANS: if there are more than the mini list's maximum.
-#, fuzzy
msgid "Show all"
-msgstr "మరింత చూపించు"
+msgstr "అన్నీ చూపించు"
#. TRANS: Header for tag subscribers.
#. TRANS: Link description for link to list of users subscribed to a tag.
@@ -5635,9 +5627,9 @@ msgid "FOAF for %s"
msgstr "%s గుంపు"
#. TRANS: First sentence of empty list message for a stream. $1%s is a user nickname.
-#, fuzzy, php-format
+#, php-format
msgid "This is the timeline for %1$s, but %1$s hasn't posted anything yet."
-msgstr "ఇది %1$s యొక్క కాలరేఖ కానీ %2$s ఇంకా ఏమీ రాయలేదు."
+msgstr "ఇది %1$s యొక్క కాలరేఖ కానీ %1$s ఇంకా ఏమీ రాయలేదు."
#. TRANS: Second sentence of empty list message for a stream for the user themselves.
msgid ""
@@ -5764,9 +5756,8 @@ msgid "Email"
msgstr "ఈమెయిల్"
#. TRANS: Field title on site settings panel.
-#, fuzzy
msgid "Contact email address for your site."
-msgstr "మీ సైటుకి సంప్రదింపుల ఈమెయిల్ చిరునామా"
+msgstr "మీ సైటుకి సంప్రదింపుల ఈమెయిల్ చిరునామా."
#. TRANS: Fieldset legend on site settings panel.
msgctxt "LEGEND"
@@ -6240,10 +6231,9 @@ msgid "Tag %s"
msgstr "ట్యాగులు"
#. TRANS: Title for people tag form when an error has occurred.
-#, fuzzy
msgctxt "TITLE"
msgid "Error"
-msgstr "అజాక్స్ పొరపాటు"
+msgstr "పొరపాటు"
#. TRANS: Header in people tag form.
msgid "User profile"
@@ -6273,9 +6263,8 @@ msgid "Tags"
msgstr "ట్యాగులు"
#. TRANS: Success message if people tags are saved.
-#, fuzzy
msgid "Tags saved."
-msgstr "సంకేతపదం భద్రమయ్యింది."
+msgstr "ట్యాగులు భద్రమయ్యాయి."
#. TRANS: Page notice.
#, fuzzy
@@ -7090,9 +7079,8 @@ msgid "User deletion in progress..."
msgstr "వాడుకరి తొలగింపు కొనసాగుతూంది..."
#. TRANS: Link title for link on user profile.
-#, fuzzy
msgid "Edit profile settings."
-msgstr "ఫ్రొఫైలు అమరికలని మార్చు"
+msgstr "ఫ్రొఫైలు అమరికలని మార్చండి."
#. TRANS: Link text for link on user profile.
msgctxt "BUTTON"
@@ -7100,9 +7088,8 @@ msgid "Edit"
msgstr "మార్చు"
#. TRANS: Link title for link on user profile.
-#, fuzzy
msgid "Send a direct message to this user."
-msgstr "ఈ వాడుకరికి ఒక నేరు సందేశాన్ని పంపించండి"
+msgstr "ఈ వాడుకరికి ఒక నేరు సందేశాన్ని పంపించండి."
#. TRANS: Link text for link on user profile.
msgctxt "BUTTON"
@@ -7458,7 +7445,7 @@ msgstr ""
#. TRANS: Client error thrown when authentication fails becaus a user clicked "Cancel".
#. TRANS: Client error thrown when authentication fails.
msgid "Could not authenticate you."
-msgstr ""
+msgstr "మిమ్మల్ని అధీకరించలేకపోయాం."
#. TRANS: Server error displayed when trying to create an anynymous OAuth consumer.
#, fuzzy
@@ -7774,9 +7761,12 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s మరియు %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s మరియు %2$s"
+msgstr[1] "%1$s మరియు %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7785,7 +7775,7 @@ msgstr ", "
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
msgstr "చెల్లని ట్యాగు: \"%s\""
@@ -7797,9 +7787,12 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -7855,15 +7848,14 @@ msgid "You can't send a message to this user."
msgstr "ఈ వాడుకరికి మీరు సందేశాన్ని పంపించలేరు."
#. TRANS: Error text shown sending a direct message fails with an unknown reason.
-#, fuzzy
msgid "Error sending direct message."
-msgstr "నేరుగా సందేశాలు పంపడం నుండి మిమ్మల్ని నిషేధించారు."
+msgstr "నేరుగా సందేశాలు పంపడంలో పొరపాటు."
#. TRANS: Message given having repeated a notice from another user.
#. TRANS: %s is the name of the user for which the notice was repeated.
-#, fuzzy, php-format
+#, php-format
msgid "Notice from %s repeated."
-msgstr "సందేశాలు"
+msgstr "%s యొక్క నోటీసుని పునరావృతించారు."
#. TRANS: Message given if content of a notice for a reply is too long. %1$d is used for plural.
#. TRANS: %1$d is the maximum number of characters, %2$d is the number of submitted characters.
@@ -8184,10 +8176,9 @@ msgstr ""
#. TRANS: Menu item in default local navigation panel.
#. TRANS: Menu item in search group navigation panel.
-#, fuzzy
msgctxt "MENU"
msgid "Public"
-msgstr "ప్రజా"
+msgstr "బహిరంగం"
#. TRANS: Menu item in default local navigation panel.
#. TRANS: Menu item in search group navigation panel.
@@ -8725,7 +8716,7 @@ msgstr "చందాచేరడం నుండి మిమ్మల్ని
#. TRANS: Body for 'nudge' notification email.
#. TRANS: %1$s is the nuding user's long name, $2$s is the nudging user's nickname,
#. TRANS: %3$s is a URL to post notices at.
-#, fuzzy, php-format
+#, php-format
msgid ""
"%1$s (%2$s) is wondering what you are up to these days and is inviting you "
"to post some news.\n"
@@ -8736,17 +8727,14 @@ msgid ""
"\n"
"Don't reply to this email; it won't get to them."
msgstr ""
-"%1$s (%2$s) మీరేం చేస్తున్నారో అని విస్మయం చెందుతున్నారు మరియు ఏవైనా విశేషాలని వ్రాయమని మిమ్మల్ని "
+"%1$s (%2$s) ఈమధ్య మీరేం చేస్తున్నారో అని విస్మయం చెందుతున్నారు మరియు ఏవైనా విశేషాలని వ్రాయమని మిమ్మల్ని "
"ఆహ్వానిస్తున్నారు.\n"
"\n"
-"కాబట్టి మిమ్మల్ని విననివ్వండి :)\n"
+"కాబట్టి ఏదైనా వ్రాయండి :)\n"
"\n"
"%3$s\n"
"\n"
-"ఈ ఈమెయిలుకే స్పందించకండి; ఇది వారికి వెళ్ళదు.\n"
-"\n"
-"శుభాశీస్సులతో,\n"
-"%4$s\n"
+"ఈ వేగుకు స్పందించకండి; ఇది వారికి వెళ్ళదు."
#. TRANS: Subject for direct-message notification email.
#. TRANS: %s is the sending user's nickname.
@@ -8757,7 +8745,7 @@ msgstr "%s నుండి కొత్త అంతరంగిక సందే
#. TRANS: Body for direct-message notification email.
#. TRANS: %1$s is the sending user's long name, %2$s is the sending user's nickname,
#. TRANS: %3$s is the message content, %4$s a URL to the message,
-#, fuzzy, php-format
+#, php-format
msgid ""
"%1$s (%2$s) sent you a private message:\n"
"\n"
@@ -8781,10 +8769,7 @@ msgstr ""
"\n"
"%4$s\n"
"\n"
-"ఈ ఈమెయిలుకి స్పందించకండి; ఇది వారికి వెళ్ళదు.\n"
-"\n"
-"శుభాకాంక్షలతో,\n"
-"%5$s\n"
+"ఈ వేగుకి స్పందించకండి; ఇది వారికి వెళ్ళదు."
#. TRANS: Subject for favorite notification e-mail.
#. TRANS: %1$s is the adding user's long name, %2$s is the adding user's nickname.
@@ -8797,7 +8782,7 @@ msgstr "%1$s (@%2$s) మీ నోటీసుని ఇష్టపడ్డా
#. TRANS: %3$s is a URL to the faved notice, %4$s is the faved notice text,
#. TRANS: %5$s is a URL to all faves of the adding user, %6$s is the StatusNet sitename,
#. TRANS: %7$s is the adding user's nickname.
-#, fuzzy, php-format
+#, php-format
msgid ""
"%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n"
"\n"
@@ -8825,10 +8810,7 @@ msgstr ""
"\n"
"%1$s యొక్క ఇష్టాంశాల జాబితాని మీరు ఇక్కడ చూడవచ్చు:\n"
"\n"
-"%5$s\n"
-"\n"
-"మీ విధేయులు,\n"
-"%6$s\n"
+"%5$s"
#. TRANS: Line in @-reply notification e-mail. %s is conversation URL.
#, php-format
@@ -8852,7 +8834,7 @@ msgstr "%1$s (@%2$s) మీ దృష్టికి ఒక నోటిసు
#. TRANS: %3$s is a URL to the notice, %4$s is the notice text,
#. TRANS: %5$s is a URL to the full conversion if it exists (otherwise empty),
#. TRANS: %6$s is a URL to reply to the notice, %7$s is a URL to all @-replies for the addressed user,
-#, fuzzy, php-format
+#, php-format
msgid ""
"%1$s just sent a notice to your attention (an '@-reply') on %2$s.\n"
"\n"
@@ -8872,7 +8854,7 @@ msgid ""
"\n"
"%7$s"
msgstr ""
-"%2$sలో %1$s (@%9$s) ఒక నోటీసుని మీ దృష్టికి ('@-స్పందన') పంపించారు.\n"
+"%2$sలో ఒక నోటీసుని %1$s మీ దృష్టికి ('@-స్పందన') తీసుకువచ్చారు.\n"
"\n"
"ఈదీ నోటీసు:\n"
"\n"
@@ -8888,12 +8870,7 @@ msgstr ""
"\n"
"మీకు వచ్చిన అన్ని @-స్పందనలని ఇక్కడ చూడవచ్చు:\n"
"\n"
-"%7$s\n"
-"\n"
-"మీ విధేయులు,\n"
-"%2$s\n"
-"\n"
-"తా.క. ఈ ఈమెయిలు గమనింపులని మీరు ఇక్కడ నిలిపివేసుకోవచ్చు: %8$s\n"
+"%7$s"
#. TRANS: Subject of group join notification e-mail.
#. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename.
@@ -8901,15 +8878,15 @@ msgstr ""
#. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename,
#. TRANS: %4$s is a block of profile info about the subscriber.
#. TRANS: %5$s is a link to the addressed user's e-mail settings.
-#, fuzzy, php-format
+#, php-format
msgid "%1$s has joined your group %2$s on %3$s."
-msgstr "%1$s %2$s గుంపులో చేరారు."
+msgstr "%3$s నందు %1$s మీ %2$s గుంపులో చేరారు."
#. TRANS: Subject of pending group join request notification e-mail.
#. TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename.
#, fuzzy, php-format
msgid "%1$s wants to join your group %2$s on %3$s."
-msgstr "%1$s %2$s గుంపులో చేరారు."
+msgstr "%3$sలో 1$s మీ %2$s గుంపులో చేరదామనుకుంటున్నారు."
#. TRANS: Main body of pending group join request notification e-mail.
#. TRANS: %1$s is the subscriber's long name, %2$s is the group name, and %3$s is the StatusNet sitename,
@@ -8919,6 +8896,8 @@ msgid ""
"%1$s would like to join your group %2$s on %3$s. You may approve or reject "
"their group membership at %4$s"
msgstr ""
+"%3$s నందు %1$s మీ %2$s గుంపులో చేరాలని ఆశిస్తున్నారు. %4$s వద్ద వారి గుంపు సభ్యత్వాన్ని మీరు "
+"ఆమోదించవచ్చు లేదా తిరస్కరించవచ్చు"
#. TRANS: Client error displayed when trying to access a mailbox that is not of the logged in user.
msgid "Only the user can read their own mailboxes."
@@ -8981,7 +8960,7 @@ msgstr "వాడుకరిని గుంపుకి ఒక నిర్వ
#. TRANS: Button text for the form that will make a user administrator.
msgctxt "BUTTON"
msgid "Make Admin"
-msgstr ""
+msgstr "నిర్వాహకున్ని చేయి"
#. TRANS: Submit button title.
msgctxt "TOOLTIP"
@@ -9202,7 +9181,7 @@ msgstr "నోటీసు పునరావృతం."
#. TRANS: Field label for notice text.
msgid "Update your status..."
-msgstr ""
+msgstr "మీ స్థితిని తాజాకరించండి..."
#. TRANS: Form legend of form to nudge/ping another user.
#, fuzzy
@@ -9279,7 +9258,6 @@ msgid "Add or remove people"
msgstr ""
#. TRANS: Header in people tag edit form.
-#, fuzzy
msgctxt "HEADER"
msgid "Search"
msgstr "వెతుకు"
@@ -9337,7 +9315,6 @@ msgid "Edit people tag settings."
msgstr "ఫ్రొఫైలు అమరికలని మార్చు"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "మార్చు"
@@ -9410,7 +9387,6 @@ msgid "People tags"
msgstr "ప్రజలు"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "వాడుకరి"
@@ -9627,7 +9603,6 @@ msgid ""
msgstr ""
#. TRANS: Menu item in search group navigation panel.
-#, fuzzy
msgctxt "MENU"
msgid "People"
msgstr "ప్రజలు"
@@ -9637,10 +9612,9 @@ msgid "Find people on this site"
msgstr "ఈ సైటులోని వ్యక్తులని కనుగొనండి"
#. TRANS: Menu item in search group navigation panel.
-#, fuzzy
msgctxt "MENU"
msgid "Notices"
-msgstr "సందేశాలు"
+msgstr "నోటీసులు"
#. TRANS: Menu item title in search group navigation panel.
msgid "Find content of notices"
@@ -9656,28 +9630,24 @@ msgid "Help"
msgstr "సహాయం"
#. TRANS: Secondary navigation menu item leading to text about StatusNet site.
-#, fuzzy
msgctxt "MENU"
msgid "About"
msgstr "గురించి"
#. TRANS: Secondary navigation menu item leading to Frequently Asked Questions.
-#, fuzzy
msgctxt "MENU"
msgid "FAQ"
msgstr "ప్రశ్నలు"
#. TRANS: Secondary navigation menu item leading to Terms of Service.
-#, fuzzy
msgctxt "MENU"
msgid "TOS"
msgstr "సేవా నియమాలు"
#. TRANS: Secondary navigation menu item leading to privacy policy.
-#, fuzzy
msgctxt "MENU"
msgid "Privacy"
-msgstr "అంతరంగికత"
+msgstr "గోప్యత"
#. TRANS: Secondary navigation menu item. Leads to information about StatusNet and its license.
#, fuzzy
@@ -9686,23 +9656,20 @@ msgid "Source"
msgstr "మూలము"
#. TRANS: Secondary navigation menu item leading to version information on the StatusNet site.
-#, fuzzy
msgctxt "MENU"
msgid "Version"
msgstr "సంచిక"
#. TRANS: Secondary navigation menu item leading to e-mail contact information on the
#. TRANS: StatusNet site, where to report bugs, ...
-#, fuzzy
msgctxt "MENU"
msgid "Contact"
-msgstr "సంప్రదించు"
+msgstr "సంప్రదింపులు"
#. TRANS: Secondary navigation menu item. Leads to information about embedding a timeline widget.
-#, fuzzy
msgctxt "MENU"
msgid "Badge"
-msgstr "బాడ్జి"
+msgstr "బాడ్జీ"
#. TRANS: Default title for section/sidebar widget.
msgid "Untitled section"
@@ -9713,10 +9680,9 @@ msgid "More..."
msgstr "మరింత..."
#. TRANS: Header in settings navigation panel.
-#, fuzzy
msgctxt "HEADER"
msgid "Settings"
-msgstr "SMS అమరికలు"
+msgstr "అమరికలు"
#. TRANS: Menu item title in settings navigation panel.
#, fuzzy
@@ -9724,7 +9690,6 @@ msgid "Change your profile settings"
msgstr "ఫ్రొఫైలు అమరికలని మార్చు"
#. TRANS: Menu item in settings navigation panel.
-#, fuzzy
msgctxt "MENU"
msgid "Avatar"
msgstr "అవతారం"
@@ -9734,7 +9699,6 @@ msgid "Upload an avatar"
msgstr "ఒక అవతారాన్ని ఎక్కించండి"
#. TRANS: Menu item in settings navigation panel.
-#, fuzzy
msgctxt "MENU"
msgid "Password"
msgstr "సంకేతపదం"
@@ -9979,14 +9943,12 @@ msgid "Search and list people"
msgstr "సైటుని వెతుకు"
#. TRANS: Dropdown option for searching in profiles.
-#, fuzzy
msgid "Everything"
-msgstr "అందరూ"
+msgstr "ప్రతీ ఒక్కటీ"
#. TRANS: Dropdown option for searching in profiles.
-#, fuzzy
msgid "Fullname"
-msgstr "పూర్తి పేరు"
+msgstr "పూర్తిపేరు"
#. TRANS: Dropdown option for searching in profiles.
msgid "URI (Remote users)"
@@ -10035,9 +9997,8 @@ msgid "To:"
msgstr ""
#. TRANS: Checkbox label in widget for selecting potential addressees to mark the notice private.
-#, fuzzy
msgid "Private?"
-msgstr "అంతరంగికం"
+msgstr "అంతరంగికమా?"
#. TRANS: Client exception thrown in widget for selecting potential addressees when an invalid fill option was received.
#, php-format
diff --git a/locale/tl/LC_MESSAGES/statusnet.po b/locale/tl/LC_MESSAGES/statusnet.po
index a01db00e64..7bfa39765d 100644
--- a/locale/tl/LC_MESSAGES/statusnet.po
+++ b/locale/tl/LC_MESSAGES/statusnet.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:46+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:38+0000\n"
"Language-Team: Tagalog \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-core\n"
@@ -165,33 +165,36 @@ msgstr "Walang ganyang balangkas."
#. TRANS: Client error displayed when referring to a non-exsting people tag.
#. TRANS: Client error displayed when referring to non-existing people tag.
#. TRANS: Client error displayed trying to reference a non-existing people tag.
-#, fuzzy
msgid "No such people tag."
-msgstr "Walang ganyang pahina."
+msgstr "Walang ganyang tatak ng mga tao."
#. TRANS: Client error displayed trying to tag an OMB 0.1 remote profile.
-#, fuzzy
msgid "You cannot tag an OMB 0.1 remote profile with this action."
-msgstr "Hindi ka makapagbibigay ng mga gampanin ng tagagamit sa sityong ito."
+msgstr ""
+"Hindi mo matatatakan ang isang malayong balangkas ng OMB 0.1 sa pamamagitan "
+"ng ganitong galaw."
#. TRANS: Client error displayed when an unknown error occurs while tagging a user.
#. TRANS: %s is a username.
#, php-format
msgid "There was an unexpected error while tagging %s."
msgstr ""
+"Nagkaroon ng isang hindi inaasahang kamalian habang tinatatakan ang %s."
#. TRANS: Client error displayed when an unknown error occurs while tagging a user.
#. TRANS: %s is a profile URL.
-#, php-format
+#, fuzzy, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
+"May isang suliranin sa pagtatatak ng %s. Marahil ang malayong tagapaghain "
+"ay hind tumutugon ng tama, mangyaring subukang subukan pa ulit mamaya."
#. TRANS: Title after subscribing to a people tag.
#. TRANS: Page title when subscription succeeded.
msgid "Subscribed"
-msgstr ""
+msgstr "Tumatanggap na ng sipi"
#. TRANS: Server error when page not found (404).
#. TRANS: Server error when page not found (404)
@@ -788,63 +791,58 @@ msgstr "Ang taguri ay hindi maaaring katulad ng palayaw."
#. TRANS: Client error displayed when referring to a non-existing list.
#. TRANS: Client error displayed trying to perform an action related to a non-existing list.
#. TRANS: Client error displayed when referring to a non-existing list.
-#, fuzzy
msgid "List not found."
-msgstr "Hindi natagpuan ang tagagamit."
+msgstr "Hindi natagpuan ang tala."
#. TRANS: Client error displayed when trying to update another user's list.
msgid "You cannot update lists that do not belong to you."
-msgstr ""
+msgstr "Hindi ka makakapagsapanahon ng mga tala na hindi mo pag-aari."
#. TRANS: Client error displayed when an unknown error occurs updating a list.
#. TRANS: Client error displayed when an unknown error occurs viewing list members.
#. TRANS: Client error displayed when an unknown error occurs in the list subscribers action.
#. TRANS: Client error displayed when an unknown error occurs unsubscribing from a list.
-#, fuzzy
msgid "An error occured."
msgstr "Naganap ang isang kamalian."
#. TRANS: Client error displayed when trying to delete another user's list.
msgid "You cannot delete lists that do not belong to you."
-msgstr ""
+msgstr "Hindi mo mabubura ang mga tala na hindi mo pag-aari."
#. TRANS: Client error displayed when referring to a non-list member.
-#, fuzzy
msgid "The specified user is not a member of this list."
-msgstr "Ang tagagamit ay hindi isang kasapi ng pangkat."
+msgstr "Ang tinukoy na tagagamit ay hindi isang kasapi ng talaang ito."
#. TRANS: Client error displayed when trying to add members to a list without having the right to do so.
-#, fuzzy
msgid "You are not allowed to add members to this list."
-msgstr "Hindi ka pinapahintulutang lumikha ng mga pangkat sa lugar na ito."
+msgstr "Hindi ka pinapahintulutang magdagdag ng mga kasapi sa talaang ito."
#. TRANS: Client error displayed when trying to modify list members without specifying them.
-#, fuzzy
msgid "You must specify a member."
-msgstr "Kailangang tumukoy ng isang balangkas."
+msgstr "Kailangan mong tumukoy ng isang kasapi."
#. TRANS: Client error displayed when trying to remove members from a list without having the right to do so.
-#, fuzzy
msgid "You are not allowed to remove members from this list."
-msgstr "Hindi ka pinapahintulutang lumikha ng mga pangkat sa lugar na ito."
+msgstr ""
+"Hindi ka pinapahintulutang magtanggal ng mga kasapi magmula sa talaang ito."
#. TRANS: Client error displayed when trying to remove a list member that is not part of a list.
msgid "The user you are trying to remove from the list is not a member."
msgstr ""
+"Ang tagagamit na sinusubukan mong tanggalin mula sa talaan ay hindi isang "
+"kasapi."
#. TRANS: Client error displayed when trying to create a list without a name.
-#, fuzzy
msgid "A list must have a name."
-msgstr "Dapat na isang pagpapasok na Atom ang pagpapaskil ng Atom."
+msgstr "Dapat na may isang pangalan ang talaan."
#. TRANS: Client error displayed when a membership check for a user is nagative.
msgid "The specified user is not a subscriber of this list."
-msgstr ""
+msgstr "Ang tinukoy na tagagamit ay hindi isang nagpapasipi ng talaang ito."
#. TRANS: Client error displayed when trying to unsubscribe from a non-subscribed list.
-#, fuzzy
msgid "You are not subscribed to this list."
-msgstr "Hindi ka nagpapasipi mula kaninuman."
+msgstr "Hindi ka tumatanggap ng sipi mula sa talaang ito."
#. TRANS: Client error displayed when uploading a media file has failed.
msgid "Upload failed."
@@ -1112,9 +1110,9 @@ msgstr "%1$s na mga pagsasapanahon ang kinagiliwan ni %2$s / %3$s."
#. TRANS: Server error displayed whe trying to get a timeline fails.
#. TRANS: %s is the error message.
-#, fuzzy, php-format
+#, php-format
msgid "Could not generate feed for list - %s"
-msgstr "Hindi malikha ang kinagigiliwan."
+msgstr "Hindi makalikha ng pasubo para sa talaan - %s"
#. TRANS: Title for timeline of most recent mentions of a user.
#. TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname.
@@ -2288,68 +2286,66 @@ msgstr "Nasagip ang mga mapagpipilian."
#. TRANS: %s is a tag.
#, php-format
msgid "Delete %s people tag"
-msgstr ""
+msgstr "Burahin ang tatak na %s ng mga tao"
#. TRANS: Title for edit people tag page.
#. TRANS: %s is a tag.
#. TRANS: Form legend for people tag edit form.
#. TRANS: %s is a people tag.
-#, fuzzy, php-format
+#, php-format
msgid "Edit people tag %s"
-msgstr "Hindi isang katanggap-tanggap na tatak ng mga tao: %s."
+msgstr "Baguhin ang tatak ng mga tao na %s"
#. TRANS: Error message displayed when trying to perform an action that requires a tagging user or ID.
-#, fuzzy
msgid "No tagger or ID."
-msgstr "Walang palayaw o ID."
+msgstr "Walang tagapagtatak o ID."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
-msgstr "Walang ganyang tagagamit."
+msgstr "Hindi isang katutubong tagagamit."
#. TRANS: Client error displayed when reting to edit a tag that was not self-created.
-#, fuzzy
msgid "You must be the creator of the tag to edit it."
-msgstr "Dapat na isa kang tagapangasiwa upang baguhin ang pangkat."
+msgstr "Dapat na ikaw ang manlilikha ng tatak upang mabago ito."
#. TRANS: Form instruction for edit people tag form.
-#, fuzzy
msgid "Use this form to edit the people tag."
-msgstr "Gamitin ang pormularyong ito upang baguhin ang pangkat."
+msgstr "Gamitin ang pormularyong ito upang baguhin ang tatak ng mga tao."
#. TRANS: Form validation error displayed if the form data for deleting a tag was incorrect.
-#, fuzzy
msgid "Delete aborted."
-msgstr "Burahin ang pabatid"
+msgstr "Pinigil ang pagbura."
#. TRANS: Text in confirmation dialog for deleting a tag.
msgid ""
"Deleting this tag will permanantly remove all its subscription and "
"membership records. Do you still want to continue?"
msgstr ""
+"Ang pagbubura ng tatak na ito ay permanenteng makapagbubura ng lahat ng mga "
+"pagpapasipi nito at mga rekord ng kasapi. Nais mo paring magpatuloy?"
#. TRANS: Form validation error displayed if a given tag is invalid.
-#, fuzzy
msgid "Invalid tag."
-msgstr "Hindi katanggap-tanggap na larawan."
+msgstr "Hindi katanggap-tanggap na tatak."
#. TRANS: Form validation error displayed if a given tag is already present.
#. TRANS: %s is the already present tag.
-#, fuzzy, php-format
+#, php-format
msgid "You already have a tag named %s."
-msgstr "Hinarang mo na ang tagagamit na iyan."
+msgstr "Mayroon ka nang isang tatak na pinangalanang %s."
#. TRANS: Text in confirmation dialog for setting a tag from public to private.
msgid ""
"Setting a public tag as private will permanently remove all the existing "
"subscriptions to it. Do you still want to continue?"
msgstr ""
+"Ang pagtatakda ng isang tatak na pangmadla bilang pribado ay permanenteng "
+"magtatanggal ng lahat ng umiiral na mga pagpapasipi mula rito. Nais mo pa "
+"ring magpatuloy?"
#. TRANS: TRANS: Server error displayed when updating a people tag fails.
-#, fuzzy
msgid "Could not update people tag."
-msgstr "Hindi maisapanahon ang pangkat."
+msgstr "Hindi maisapanahon ang tatak ng mga tao."
#. TRANS: Title for e-mail settings.
msgid "Email settings"
@@ -3003,6 +2999,9 @@ msgid ""
"You can send and receive notices through instant messaging [instant messages]"
"(%%doc.im%%). Configure your addresses and settings below."
msgstr ""
+"Makapagpapadala at makatatanggap ka ng mga pabatid sa pamamagitan ng "
+"biglaang pagmemensahe [biglang mga mensahe](%%doc.im%%). Iayos ang mga "
+"tirahan at mga katakdaan mo sa ibaba."
#. TRANS: Message given in the IM settings if IM is not enabled on the site.
msgid "IM is not available."
@@ -3011,7 +3010,7 @@ msgstr "Hindi makukuha ang IM."
#. TRANS: Form note in IM settings form. %s is the type of IM address that was confirmed.
#, php-format
msgid "Current confirmed %s address."
-msgstr ""
+msgstr "Pangkasalukuyang natiyak na tirahan ng %s."
#. TRANS: Form note in IM settings form.
#. TRANS: %s is the IM service name, %2$s is the IM address set.
@@ -3020,6 +3019,9 @@ msgid ""
"Awaiting confirmation on this address. Check your %1$s account for a message "
"with further instructions. (Did you add %2$s to your buddy list?)"
msgstr ""
+"Naghihintay ng pagtitiyak sa tirahang ito. Suriin ang iyong akawnt ng %1$s "
+"para sa isang mensahe na may karagdagang mga panuto. (Idinagdag mo ba ang %2"
+"$s sa talaan mo ng katoto?)"
#. TRANS: Field label for IM address.
msgid "IM address"
@@ -4122,127 +4124,126 @@ msgstr "Paghahanap ng mga tao"
#. TRANS: Title for people tag page.
#. TRANS: %s is a tag.
-#, fuzzy, php-format
+#, php-format
msgid "Public people tag %s"
-msgstr "Pangmadlang guhit ng panahon, pahinang %d"
+msgstr "Pangmadlang tatak ng mga tao na%s"
#. TRANS: Title for people tag page.
#. TRANS: %1$s is a tag, %2$d is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "Public people tag %1$s, page %2$d"
-msgstr "Mga pabatid ni %1$s, pahina %2$d"
+msgstr "Pangmadlang tatak ng mga tao na %1$s, pahina %2$d"
#. TRANS: Message for anonymous users on people tag page.
#. TRANS: This message contains Markdown links in the form [description](link).
-#, fuzzy, php-format
+#, php-format
msgid ""
"People tags are how you sort similar people on %%site.name%%, a [micro-"
"blogging](http://en.wikipedia.org/wiki/Micro-blogging) service based on the "
"Free Software [StatusNet](http://status.net/) tool. You can then easily keep "
"track of what they are doing by subscribing to the tag's timeline."
msgstr ""
-"Si **%s** ay may isang akawnt sa %%%%site.name%%%%, isang palingkuran ng "
+"Ang mga tatak ng mga tao ay kung paano mo pinagpapangkat-pangkat ang "
+"magkakahalintulad na mga tao sa %%site.name%%, isang palingkuran ng "
"[maliitang pagboblog](http://en.wikipedia.org/wiki/Micro-blogging) na "
"nakabatay sa kasangkapan ng Malayang Sopwer na [StatusNet](http://status."
-"net/). "
+"net/). Kaya't maginhawa mong masusubaybay ang kung ano ang kanilang ginagawa "
+"sa pamamagitan ng pagpapatanggap ng mga sipi sa guhit ng panahon ng tatak."
#. TRANS: Client error displayed when a tagger is expected but not provided.
-#, fuzzy
msgid "No tagger."
-msgstr "Walang ganyang pahina."
+msgstr "Walang tagapagtatak."
#. TRANS: Title for list of people tagged by the user with a tag.
#. TRANS: %1$s is a tag, %2$s is a username.
#. TRANS: Header on show profile tag page.
#. TRANS: %1$s is a people tag, %2$s is a tagger's nickname.
-#, fuzzy, php-format
+#, php-format
msgid "People tagged %1$s by %2$s"
-msgstr "Mga tugon sa %1$s sa %2$s."
+msgstr "Mga taong tinatakan ni %2$s ng %1$s."
#. TRANS: Title for list of people tagged by the user with a tag.
#. TRANS: %1$s is a tag, %2$s is a username, %2$s is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "People tagged %1$s by %2$s, page %3$d"
-msgstr "Mga pabatid ni %1$s na tinatakan ng %2$s, pahina %3$d"
+msgstr "Mga taong tinatakan ni %2$s ng %1$s, pahina %3$d"
#. TRANS: Addition in tag membership list for creator of a tag.
#. TRANS: Addition in tag subscribers list for creator of a tag.
-#, fuzzy
msgid "Creator"
-msgstr "Nalikha na"
+msgstr "Manlilikha"
#. TRANS: Title for people tags by a user page for a private tag.
msgid "Private people tags by you"
-msgstr ""
+msgstr "Pribadong mga tatak mo ng mga tao"
#. TRANS: Title for people tags by a user page for a public tag.
-#, fuzzy
msgid "Public people tags by you"
-msgstr "Ulap ng pangmadlang tatak"
+msgstr "Pangmadlang mga tatak mo ng mga tao"
#. TRANS: Title for people tags by a user page.
#. TRANS: Page notice.
msgid "People tags by you"
-msgstr ""
+msgstr "Mga tatak mo ng mga tao"
#. TRANS: Title for people tags by a user page.
#. TRANS: %s is a user nickname.
#. TRANS: Page notice. %s is a tagger's nickname.
#. TRANS: Menu item title in personal group navigation menu.
#. TRANS: %s is a username.
-#, fuzzy, php-format
+#, php-format
msgid "People tags by %s"
-msgstr "Mga pag-uulit ng %s"
+msgstr "Mga tatak ng mga tao ni %s"
#. TRANS: Title for people tags by a user page.
#. TRANS: %1$s is a user nickname, %2$d is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "People tags by %1$s, page %2$d"
-msgstr "Mga pabatid ni %1$s, pahina %2$d"
+msgstr "Mga tatak ng mga tao ni %1$s, pahina %2$d"
#. TRANS: Client error displayed when trying view another user's private people tags.
msgid "You cannot view others' private people tags"
-msgstr ""
+msgstr "Hindi mo maaaring makita ang pribadong mga tatak ng mga tao ng iba"
#. TRANS: Mode selector label.
msgid "Mode"
-msgstr ""
+msgstr "Paraan"
#. TRANS: Link text to show people tags for user %s.
#. TRANS: Title for page that displays which people tags a user has been tagged with.
#. TRANS: %s is a profile name.
-#, fuzzy, php-format
+#, php-format
msgid "People tags for %s"
-msgstr "Mga pag-uulit ng %s"
+msgstr "Mga tatak ng mga tao para sa %s"
#. TRANS: Fieldset legend.
#. TRANS: Fieldset legend on gallery action page.
msgid "Select tag to filter"
-msgstr ""
+msgstr "Pumili ng tatak na sasalain"
#. TRANS: Checkbox title.
msgid "Show private tags."
-msgstr ""
+msgstr "Ipakita ang pribadong mga tatak."
#. TRANS: Checkbox label to show public tags.
msgctxt "LABEL"
msgid "Public"
-msgstr ""
+msgstr "Pangmadla"
#. TRANS: Checkbox title.
msgid "Show public tags."
-msgstr ""
+msgstr "Ipakita ang pangmadlang mga tatak."
#. TRANS: Submit button text for tag filter form.
#. TRANS: Submit button text on gallery action page.
msgctxt "BUTTON"
msgid "Go"
-msgstr ""
+msgstr "Pumunta"
#. TRANS: Message displayed for anonymous users on page that displays people tags by a user.
#. TRANS: This message contains Markdown links in the form [description](links).
#. TRANS: %s is a tagger nickname.
-#, fuzzy, php-format
+#, php-format
msgid ""
"These are people tags created by **%s**. People tags are how you sort "
"similar people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia."
@@ -4250,10 +4251,13 @@ msgid ""
"(http://status.net/) tool. You can easily keep track of what they are doing "
"by subscribing to the tag's timeline."
msgstr ""
-"Si **%s** ay may isang akawnt sa %%%%site.name%%%%, isang palingkuran ng "
-"[maliitang pagboblog](http://en.wikipedia.org/wiki/Micro-blogging) na "
-"nakabatay sa kasangkapan ng Malayang Sopwer na [StatusNet](http://status."
-"net/). "
+"Ito ay mga tatak ng mga tao na nilikha ni **%s**. Ang mga tatak ng mga tao "
+"ay kung paano mo pinagpapangkat-pangkat ang magkakahalintulad na mga tao sa %"
+"%site.name%%, isang palingkuran ng [maliitang pagboblog](http://en.wikipedia."
+"org/wiki/Micro-blogging) na nakabatay sa kasangkapan ng Malayang Sopwer na "
+"[StatusNet](http://status.net/). Kaya't maginhawa mong masusubaybay ang kung "
+"ano ang kanilang ginagawa sa pamamagitan ng pagpapatanggap ng mga sipi sa "
+"guhit ng panahon ng tatak."
#. TRANS: Message displayed on page that displays people tags by a user when there are none.
#. TRANS: This message contains Markdown links in the form [description](links).
@@ -4261,15 +4265,17 @@ msgstr ""
#, php-format
msgid "%s has not created any [people tags](%%%%doc.tags%%%%) yet."
msgstr ""
+"Si %s ay hindi pa lumilikha ng anumang [mga tatak ng mga tao](%%%%doc.tags%%%"
+"%)."
-#, fuzzy, php-format
+#, php-format
msgid "People tags for %1$s, page %2$d"
-msgstr "Kahong-tanggapan para sa %1$s - pahinang %2$d"
+msgstr "Mga tatak ng mga tao para sa %1$s, pahina %2$d"
#. TRANS: Message displayed for anonymous users on page that displays people tags for a user.
#. TRANS: This message contains Markdown links in the form [description](links).
#. TRANS: %s is a tagger nickname.
-#, fuzzy, php-format
+#, php-format
msgid ""
"These are people tags for **%s**. People tags are how you sort similar "
"people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia.org/wiki/"
@@ -4277,10 +4283,13 @@ msgid ""
"net/) tool. You can easily keep track of what they are doing by subscribing "
"to the tag's timeline."
msgstr ""
-"Si **%s** ay may isang akawnt sa %%%%site.name%%%%, isang palingkuran ng "
-"[maliitang pagboblog](http://en.wikipedia.org/wiki/Micro-blogging) na "
-"nakabatay sa kasangkapan ng Malayang Sopwer na [StatusNet](http://status."
-"net/). "
+"Ito ay mga tatak ng mga tao para sa **%s**. Ang mga tatak ng mga tao ay kung "
+"paano mo pinagpapangkat-pangkat ang magkakahalintulad na mga tao sa %%site."
+"name%%, isang palingkuran ng [maliitang pagboblog](http://en.wikipedia.org/"
+"wiki/Micro-blogging) na nakabatay sa kasangkapan ng Malayang Sopwer na "
+"[StatusNet](http://status.net/). Kaya't maginhawa mong masusubaybay ang kung "
+"ano ang kanilang ginagawa sa pamamagitan ng pagpapatanggap ng mga sipi sa "
+"guhit ng panahon ng tatak."
#. TRANS: Message displayed on page that displays people tags for a user when there are none.
#. TRANS: This message contains Markdown links in the form [description](links).
@@ -4297,26 +4306,26 @@ msgstr ""
#. TRANS: Page title for list of people tag subscribers.
#. TRANS: %1$s is a tag, %2$s is a user nickname, %3$d is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "Subscribers of people tagged %1$s by %2$s, page %3$d"
-msgstr "Mga pabatid ni %1$s na tinatakan ng %2$s, pahina %3$d"
+msgstr "Mga nagpapasipi ng mga taong tinatakan ni %2$s ng %1$s, pahina %3$d"
#. TRANS: Title for page that displays people tags subscribed to by a user.
#. TRANS: %s is a profile nickname.
-#, fuzzy, php-format
+#, php-format
msgid "People tags subscriptions by %s"
-msgstr "Mga tao na nagpapasipi sa kay %s."
+msgstr "Mga pagpapasipi ng mga tatak ng mga tao ni %s"
#. TRANS: Title for page that displays people tags subscribed to by a user.
#. TRANS: %1$s is a profile nickname, %2$d is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "People tags subscriptions by %1$s, page %2$d"
-msgstr "Mga pabatid ni %1$s, pahina %2$d"
+msgstr "Mga pagpapasipi ng mga tatak ng mga tao ni %1$s, pahina %2$d"
#. TRANS: Message displayed for anonymous users on page that displays people tags subscribed to by a user.
#. TRANS: This message contains Markdown links in the form [description](links).
#. TRANS: %s is a profile nickname.
-#, fuzzy, php-format
+#, php-format
msgid ""
"These are people tags subscribed to by **%s**. People tags are how you sort "
"similar people on %%%%site.name%%%%, a [micro-blogging](http://en.wikipedia."
@@ -4324,10 +4333,13 @@ msgid ""
"(http://status.net/) tool. You can easily keep track of what they are doing "
"by subscribing to the tag's timeline."
msgstr ""
-"Si **%s** ay may isang akawnt sa %%%%site.name%%%%, isang palingkuran ng "
-"[maliitang pagboblog](http://en.wikipedia.org/wiki/Micro-blogging) na "
-"nakabatay sa kasangkapan ng Malayang Sopwer na [StatusNet](http://status."
-"net/). "
+"Ito ay mga tatak ng mga tao na pinasisipi ni **%s**. Ang mga tatak ng mga "
+"tao ay kung paano mo pinagpapangkat-pangkat ang magkakahalintulad na mga tao "
+"sa %%site.name%%, isang palingkuran ng [maliitang pagboblog](http://en."
+"wikipedia.org/wiki/Micro-blogging) na nakabatay sa kasangkapan ng Malayang "
+"Sopwer na [StatusNet](http://status.net/). Kaya't maginhawa mong "
+"masusubaybay ang kung ano ang kanilang ginagawa sa pamamagitan ng "
+"pagpapatanggap ng mga sipi sa guhit ng panahon ng tatak."
#. TRANS: Page title for AJAX form return when a disabling a plugin.
msgctxt "plugin"
@@ -4344,7 +4356,7 @@ msgstr "Ang galaw na ito ay tumatanggap lamang ng mga kahilingan ng PAGPASKIL."
#. TRANS: Client error displayed when trying to enable or disable a plugin without access rights.
msgid "You cannot administer plugins."
-msgstr ""
+msgstr "Hindi ka makakapangasiwa ng mga pamasak."
#. TRANS: Client error displayed when trying to enable or disable a non-existing plugin.
msgid "No such plugin."
@@ -4390,13 +4402,12 @@ msgstr ""
#. TRANS: %s is a field name.
#, php-format
msgid "Unidentified field %s."
-msgstr ""
+msgstr "Hindi nakikilalang hanay na %s"
#. TRANS: Page title.
-#, fuzzy
msgctxt "TITLE"
msgid "Search results"
-msgstr "Maghanap sa sityo"
+msgstr "Mga kinalabasan ng paghahanap"
#. TRANS: Error message in case a search is shorter than three characters.
msgid "The search string must be at least 3 characters long."
@@ -4664,15 +4675,14 @@ msgid ""
msgstr ""
#. TRANS: Title for page with public people tag cloud.
-#, fuzzy
msgid "Public people tag cloud"
-msgstr "Ulap ng pangmadlang tatak"
+msgstr "Ulap ng pangmadlang tatak ng mga tao"
#. TRANS: Page notice for page with public people tag cloud.
#. TRANS: %s is a StatusNet sitename.
-#, fuzzy, php-format
+#, php-format
msgid "These are most used people tags on %s"
-msgstr "Ito ang mga pinakatanyag na kamakailang mga tatak sa %s"
+msgstr "Ito ang mga pinaka ginagamit na mga tatak ng mga tao sa %s"
#. TRANS: Empty list message on page with public people tag cloud.
#. TRANS: This message contains Markdown links in the form [description](link).
@@ -4681,24 +4691,22 @@ msgid "No one has [tagged](%%doc.tags%%) anyone yet."
msgstr ""
#. TRANS: Additional empty list message on page with public people tag cloud for logged in users.
-#, fuzzy
msgid "Be the first to tag someone!"
-msgstr "Maging pinakauna sa pagpapaskil ng isa!"
+msgstr "Maging pinakauna sa pagtatatak ng isang tao!"
#. TRANS: Additional empty list message on page with public people tag cloud for anonymous users.
#. TRANS: This message contains Markdown links in the form [description](link).
-#, fuzzy, php-format
+#, php-format
msgid ""
"Why not [register an account](%%action.register%%) and be the first to tag "
"someone!"
msgstr ""
"Bakit hindi [magpatala ng isang akawnt] (%%action.register%%) at maging una "
-"sa pagdaragdag ng isang pabatid sa iyong mga kinagigiliwan!"
+"sa pagtatatak ng isang tao!"
#. TRANS: DT element on on page with public people tag cloud.
-#, fuzzy
msgid "People tag cloud"
-msgstr "Ulap ng pangmadlang tatak"
+msgstr "Ulap ng tatak ng mga tao"
#. TRANS: Link title for number of people tagged. %d is the number of people tagged.
#, php-format
@@ -4710,7 +4718,7 @@ msgstr[1] ""
#. TRANS: Public RSS feed description. %s is the StatusNet site name.
#, php-format
msgid "%s updates from everyone."
-msgstr ""
+msgstr "Mga pagsasapanahon sa %s na nagmumula sa lahat."
#. TRANS: Title for public tag cloud.
msgid "Public tag cloud"
@@ -5294,9 +5302,9 @@ msgstr "Hindi isang katanggap-tanggap na tatak ng mga tao: %s."
#. TRANS: Page title for page showing self tags.
#. TRANS: %1$s is a tag, %2$d is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "Users self-tagged with %1$s, page %2$d"
-msgstr "Mga pagsasapanahon na tinatakan ng %1$s sa %2$s!"
+msgstr "Mga tagagamit na nagtatak sa sarili ng %1$s, pahina %2$d"
#. TRANS: Title for the sessions administration panel.
msgctxt "TITLE"
@@ -5440,7 +5448,7 @@ msgstr "Isa itong paraan upang maibahagi kung ano ang nais mo."
#. TRANS: Page title for first group page. %s is a group name.
#, php-format
msgid "%s group"
-msgstr ""
+msgstr "Pangkat ng %s"
#. TRANS: Page title for any but first group page.
#. TRANS: %1$s is a group name, $2$s is a page number.
@@ -5580,68 +5588,69 @@ msgstr ""
#. TRANS: Title for private people tag timeline.
#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname, %3$d is a page number.
-#, fuzzy, php-format
+#, php-format
msgid "Timeline for people tagged %1$s by %2$s, page %3$d"
-msgstr "Mga pabatid ni %1$s na tinatakan ng %2$s, pahina %3$d"
+msgstr ""
+"Guhit ng panahon para sa mga taong tinatakan ni %2$s ng %1$s, pahina %3$d"
#. TRANS: Title for private people tag timeline.
#. TRANS: %s is a people tag.
#, php-format
msgid "Private timeline of people tagged %s by you"
-msgstr ""
+msgstr "Pribadong guhit ng panahon ng mga taong tinatakan mo ng %s"
#. TRANS: Title for public people tag timeline where the viewer is the tagger.
#. TRANS: %s is a people tag.
#, php-format
msgid "Timeline for people tagged %s by you"
-msgstr ""
+msgstr "Guhit ng panahon para sa mga taong tinatakan mo ng %s"
#. TRANS: Title for private people tag timeline.
#. TRANS: %1$s is a people tag, %2$s is the tagger's nickname.
#, php-format
msgid "Timeline for people tagged %1$s by %2$s"
-msgstr ""
+msgstr "Guhit ng panahon para sa mga taong tinatakan ni %2$s ng %1$s"
#. TRANS: Feed title.
#. TRANS: %1$s is a people tag, %2$s is tagger's nickname.
-#, fuzzy, php-format
+#, php-format
msgid "Feed for people tagged %1$s by %2$s (Atom)"
-msgstr "Pasubo para sa mga kinagigiliwan ni %s (Atom)"
+msgstr "Pasubo para sa mga taong tinatakan ni %2$s ng %1$s (Atom)"
#. TRANS: Empty list message for people tag timeline.
#. TRANS: %1$s is a people tag, %2$s is a tagger's nickname.
-#, fuzzy, php-format
+#, php-format
msgid ""
"This is the timeline for people tagged %1$s by %2$s but no one has posted "
"anything yet."
msgstr ""
-"Ito ang guhit pampanahon para kay %s at mga kaibigan ngunit walang pang "
-"nagpapaskil ng anuman."
+"Ito ang guhit ng panahon para sa mga taong tinatakan ni %2$s ng %1$s ngunit "
+"wala pang isang nagpapaskil ng anuman."
#. TRANS: Additional empty list message for people tag timeline for currently logged in user tagged tags.
msgid "Try tagging more people."
-msgstr ""
+msgstr "Subukang magtatak ng mas marami pang mga tao."
#. TRANS: Additional empty list message for people tag timeline.
#. TRANS: This message contains Markdown links in the form [description](link).
-#, fuzzy, php-format
+#, php-format
msgid ""
"Why not [register an account](%%%%action.register%%%%) and start following "
"this timeline!"
msgstr ""
"Bakit hindi [magpatala ng isang akawnt] (%%%%action.register%%%%) at "
-"pagkaraan ay dunggulin ang %s o magpaskil ng isang pabatid sa kanila."
+"magsimulang sundan ang guhit ng panahong ito!"
#. TRANS: Header on show profile tag page.
#. TRANS: %s is a people tag.
#, php-format
msgid "People tagged %s by you"
-msgstr ""
+msgstr "Mga taong tinatakan mo %s"
#. TRANS: Link for more "People tagged x by a user"
#. TRANS: if there are more than the mini list's maximum.
msgid "Show all"
-msgstr ""
+msgstr "Ipakitang lahat"
#. TRANS: Header for tag subscribers.
#. TRANS: Link description for link to list of users subscribed to a tag.
@@ -6029,12 +6038,12 @@ msgstr ""
#. TRANS: Message given after successfully canceling SMS phone number confirmation.
msgid "SMS confirmation cancelled."
-msgstr ""
+msgstr "Hindi itinuloy ang pagtitiyak ng SMS."
#. TRANS: Message given trying to remove an SMS phone number that is not
#. TRANS: registered for the active user.
msgid "That is not your phone number."
-msgstr ""
+msgstr "Hindi iyan ang numero mo ng telepono."
#. TRANS: Message given after successfully removing a registered SMS phone number.
msgid "The SMS phone number was removed."
@@ -6092,15 +6101,17 @@ msgstr "Ayon sa pagkakataon habang nagaganap ang paghagip sa web"
#. TRANS: Option in dropdown for snapshot method in admin panel for snapshots.
msgid "In a scheduled job"
-msgstr ""
+msgstr "Sa loob ng isang nakatakdang trabaho"
#. TRANS: Dropdown label for snapshot method in admin panel for snapshots.
msgid "Data snapshots"
-msgstr ""
+msgstr "Mga dato na nakuhanan ng kamera"
#. TRANS: Dropdown title for snapshot method in admin panel for snapshots.
msgid "When to send statistical data to status.net servers."
msgstr ""
+"Kung kailan ipapadala ang datong pang-estadistika sa mga tagapaghain ng "
+"status.net."
#. TRANS: Input field label for snapshot frequency in admin panel for snapshots.
msgid "Frequency"
@@ -6109,6 +6120,8 @@ msgstr "Dalas"
#. TRANS: Input field title for snapshot frequency in admin panel for snapshots.
msgid "Snapshots will be sent once every N web hits."
msgstr ""
+"Ang mga kuha ng kamera ay ipapadala ng isang ulit sa bawat mga pagpapatama "
+"sa web ng N."
#. TRANS: Input field label for snapshot report URL in admin panel for snapshots.
msgid "Report URL"
@@ -6116,95 +6129,100 @@ msgstr "URL ng ulat"
#. TRANS: Input field title for snapshot report URL in admin panel for snapshots.
msgid "Snapshots will be sent to this URL."
-msgstr ""
+msgstr "Ang mga kuha ng kamera ay ipapadala sa URL na ito."
#. TRANS: Title for button to save snapshot settings.
msgid "Save snapshot settings."
-msgstr ""
+msgstr "Sagipin ang mga pagtatakda sa kuha ng kamera."
#. TRANS: Client error displayed trying a change a subscription for a non-subscribed profile.
msgid "You are not subscribed to that profile."
-msgstr ""
+msgstr "Hindi ka tumatanggap ng sipi mula sa balangkas na iyan."
#. TRANS: Server error displayed when updating a subscription fails with a database error.
#. TRANS: Exception thrown when a subscription could not be stored on the server.
msgid "Could not save subscription."
-msgstr ""
+msgstr "Hindi masagip ang pagpapasipi."
#. TRANS: Client error displayed when trying to approve group applicants without being a group administrator.
msgid "You may only approve your own pending subscriptions."
msgstr ""
+"Tanging pansarili mong nakabinbing mga pagpapasipi lamang ang maaari mong "
+"payagan."
#. TRANS: Title of the first page showing pending subscribers still awaiting approval.
#. TRANS: %s is the name of the user.
#, php-format
msgid "%s subscribers awaiting approval"
-msgstr ""
+msgstr "Mga nagpapasipi kay %s na naghihintay ng pagpayag"
#. TRANS: Title of all but the first page showing pending subscribersmembers still awaiting approval.
#. TRANS: %1$s is the name of the user, %2$d is the page number of the members list.
#, php-format
msgid "%1$s subscribers awaiting approval, page %2$d"
-msgstr ""
+msgstr "Mga nagpapasipi kay %1$s na naghihintay ng pagpayag, pahina %2$d"
#. TRANS: Page notice for group members page.
msgid "A list of users awaiting approval to subscribe to you."
msgstr ""
+"Isang tala ng mga tagagamit na naghihintay ng pagpayag upang makasipi sa iyo."
#. TRANS: Client error displayed trying to subscribe to an OMB 0.1 remote profile.
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
#. TRANS: Client error displayed when trying to perform an action while not logged in.
-#, fuzzy
msgid "You must be logged in to unsubscribe to a people tag."
-msgstr "Dapat na nakalagda ka upang makalikha ng isang pangkat."
+msgstr ""
+"Dapat na nakalagda ka upang hindi magpatanggap ng sipi mula sa isang tatak "
+"ng mga tao."
#. TRANS: Client error displayed when trying to perform an action without providing an ID.
-#, fuzzy
msgid "No ID given."
-msgstr "Walang ID."
+msgstr "Walang ibinigay na ID."
#. TRANS: Server error displayed subscribing to a people tag fails.
#. TRANS: %1$s is a user nickname, %2$s is a people tag.
-#, fuzzy, php-format
+#, php-format
msgid "Could not subscribe user %1$s to people tag %2$s."
-msgstr "Hindi maisali ang tagagamit na si %1$s sa pangkat na %2$s."
+msgstr "Hindi mapasipian ang tagagamit na si %1$s sa tatak ng mga tao na %2$s."
#. TRANS: Title of form to subscribe to a people tag.
#. TRANS: %1%s is a user nickname, %2$s is a people tag, %3$s is a tagger nickname.
-#, fuzzy, php-format
+#, php-format
msgid "%1$s subscribed to people tag %2$s by %3$s"
-msgstr "Ang mga tao ng %1$s ay nagpapasipi mula sa %2$s"
+msgstr "Nagpasipi si %1$s ng tatak ng mga tao na %2$s ni %3$s"
#. TRANS: Header for list of subscribers for a user (first page).
#. TRANS: %s is the user's nickname.
#, php-format
msgid "%s subscribers"
-msgstr ""
+msgstr "Mga nagpapasipi mula kay %s"
#. TRANS: Header for list of subscribers for a user (not first page).
#. TRANS: %1$s is the user's nickname, $2$d is the page number.
#, php-format
msgid "%1$s subscribers, page %2$d"
-msgstr ""
+msgstr "Mga nagpapasipi mula kay %1$s, pahina %2$d"
#. TRANS: Page notice for page with an overview of all subscribers
#. TRANS: of the logged in user's own profile.
msgid "These are the people who listen to your notices."
-msgstr ""
+msgstr "Ito ang mga taong nakikinig sa mga pabatid mo."
#. TRANS: Page notice for page with an overview of all subscribers of a user other
#. TRANS: than the logged in user. %s is the user nickname.
#, php-format
msgid "These are the people who listen to %s's notices."
-msgstr ""
+msgstr "Ito ang mga taong nakikinig sa mga pabatid ni %s."
#. TRANS: Subscriber list text when the logged in user has no subscribers.
msgid ""
"You have no subscribers. Try subscribing to people you know and they might "
"return the favor."
msgstr ""
+"Walang nagpapasipi sa iyo. Subukang sumipi sa mga taong kakilala mo at "
+"maaaring ibalik nila ang pagbibigay."
#. TRANS: Subscriber list text when looking at the subscribers for a of a user other
#. TRANS: than the logged in user that has no subscribers. %s is the user nickname.
@@ -6268,11 +6286,11 @@ msgstr ""
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
msgid "IM"
-msgstr ""
+msgstr "Biglaang Mensahe"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
msgid "SMS"
-msgstr ""
+msgstr "SMS"
#. TRANS: Title for all but the first page of notices with tags.
#. TRANS: %1$s is the tag, %2$d is the page number.
@@ -6301,59 +6319,53 @@ msgstr ""
#. TRANS: Client error displayed when trying to tag a user that cannot be tagged.
#. TRANS: Client exception thrown trying to set a tag for a user that cannot be tagged.
#. TRANS: Error displayed when trying to tag a user that cannot be tagged.
-#, fuzzy
msgid "You cannot tag this user."
-msgstr "Hindi ka maaaring magpadala ng isang mensahe sa tagagamit na ito."
+msgstr "Hindi mo maaaring tatakan ang tagagamit na ito."
#. TRANS: Title for people tag form when not on a profile page.
-#, fuzzy
msgid "Tag a profile"
-msgstr "Balangkas mo"
+msgstr "Tatakan ang isang balangkas"
#. TRANS: Title for people tag form when on a profile page.
#. TRANS: %s is a profile nickname.
#, php-format
msgid "Tag %s"
-msgstr ""
+msgstr "Tatakan si %s"
#. TRANS: Title for people tag form when an error has occurred.
-#, fuzzy
msgctxt "TITLE"
msgid "Error"
-msgstr "Kamaliang Ajax"
+msgstr "Kamalian"
#. TRANS: Header in people tag form.
msgid "User profile"
-msgstr ""
+msgstr "Balangkas ng tagagamit"
#. TRANS: Fieldset legend for people tag form.
msgid "Tag user"
-msgstr ""
+msgstr "Tatakan ang tagagamit"
#. TRANS: Field label on people tag form.
#. TRANS: Label in self tags widget.
-#, fuzzy
msgctxt "LABEL"
msgid "Tags"
msgstr "Mga tatak"
#. TRANS: Field title on people tag form.
-#, fuzzy
msgid ""
"Tags for this user (letters, numbers, -, ., and _), comma- or space- "
"separated."
msgstr ""
-"Mga tatak para sa sarili mo (mga titik, mga bilang, -, ., at _), "
+"Mga tatak para sa tagagamit na ito (mga titik, mga bilang, -, ., at _), "
"pinaghihiwalay-hiwalay ng kuwit- o puwang-."
msgctxt "TITLE"
msgid "Tags"
-msgstr ""
+msgstr "Mga tatak"
#. TRANS: Success message if people tags are saved.
-#, fuzzy
msgid "Tags saved."
-msgstr "Nasagip ang hudyat."
+msgstr "Nasagip ang mga tatak."
#. TRANS: Page notice.
msgid "Use this form to add tags to your subscribers or subscriptions."
@@ -6361,7 +6373,7 @@ msgstr ""
#. TRANS: Client error when requesting a tag feed for a non-existing tag.
msgid "No such tag."
-msgstr ""
+msgstr "Walang ganyang tatak."
#. TRANS: Client error displayed when trying to unblock a non-blocked user.
msgid "You haven't blocked that user."
@@ -6369,21 +6381,21 @@ msgstr ""
#. TRANS: Client error on page to unsilence a user when the to be unsandboxed user has not been sandboxed.
msgid "User is not sandboxed."
-msgstr ""
+msgstr "Hindi nakakahon sa buhangin ang tagagamit."
#. TRANS: Client error on page to unsilence a user when the to be unsilenced user has not been silenced.
msgid "User is not silenced."
-msgstr ""
+msgstr "Hindi pinatatahimik ang tagagamit."
#. TRANS: Page title for page to unsubscribe.
msgid "Unsubscribed"
-msgstr ""
+msgstr "Hindi na nagpapasipi"
#. TRANS: Page title for form that allows unsubscribing from a people tag.
#. TRANS: %1$s is a nickname, %2$s is a people tag, %3$s is a tagger nickname.
-#, fuzzy, php-format
+#, php-format
msgid "%1$s unsubscribed to people tag %2$s by %3$s"
-msgstr "Ang mga tao ng %1$s ay nagpapasipi mula sa %2$s"
+msgstr "Hindi na nagpapasipi si %1$s ng mga tatak ng mga tao na %2$s ni %3$s"
#. TRANS: Client error displayed when trying to update profile with an incompatible license.
#. TRANS: %1$s is the license incompatible with site license %2$s.
@@ -6397,37 +6409,37 @@ msgstr ""
#. TRANS: Title of URL settings tab in profile settings.
msgid "URL settings"
-msgstr ""
+msgstr "Mga katakdaan ng URL"
#. TRANS: Instructions for tab "Other" in user profile settings.
msgid "Manage various other options."
-msgstr ""
+msgstr "Pamahalaan ang sari-saring iba pang mga mapagpipilian."
#. TRANS: Used as a suffix for free URL shorteners in a dropdown list in the tab "Other" of a
#. TRANS: user's profile settings. This message has one space at the beginning. Use your
#. TRANS: language's word separator here if it has one (most likely a single space).
msgid " (free service)"
-msgstr ""
+msgstr "(paglilingkod na walang bayad)"
#. TRANS: Default value for URL shortening settings.
msgid "[none]"
-msgstr ""
+msgstr "[wala]"
#. TRANS: Default value for URL shortening settings.
msgid "[internal]"
-msgstr ""
+msgstr "[panloob]"
#. TRANS: Label for dropdown with URL shortener services.
msgid "Shorten URLs with"
-msgstr ""
+msgstr "Paikliin ang mga URL na may"
#. TRANS: Tooltip for for dropdown with URL shortener services.
msgid "Automatic shortening service to use."
-msgstr ""
+msgstr "Gagamiting kusang palingkuran ng pagpapaikli."
#. TRANS: Field label in URL settings in profile.
msgid "URL longer than"
-msgstr ""
+msgstr "URL na mas mahaba kaysa sa"
#. TRANS: Field title in URL settings in profile.
msgid "URLs longer than this will be shortened, 0 means always shorten."
@@ -6435,7 +6447,7 @@ msgstr ""
#. TRANS: Field label in URL settings in profile.
msgid "Text longer than"
-msgstr ""
+msgstr "Tekstong mas mahaba kaysa sa"
#. TRANS: Field title in URL settings in profile.
msgid ""
@@ -6461,7 +6473,7 @@ msgstr ""
#. TRANS: User admin panel title.
msgctxt "TITLE"
msgid "User"
-msgstr ""
+msgstr "Tagagamit"
#. TRANS: Instruction for user admin panel.
msgid "User settings for this StatusNet site"
@@ -6484,11 +6496,11 @@ msgstr ""
#. TRANS: Fieldset legend in user administration panel.
msgctxt "LEGEND"
msgid "Profile"
-msgstr ""
+msgstr "Balangkas"
#. TRANS: Field label in user admin panel for setting the character limit for the bio field.
msgid "Bio Limit"
-msgstr ""
+msgstr "Hangganan ng Talambuhay"
#. TRANS: Tooltip in user admin panel for setting the character limit for the bio field.
msgid "Maximum length of a profile bio in characters."
@@ -6496,19 +6508,21 @@ msgstr ""
#. TRANS: Form legend in user admin panel.
msgid "New users"
-msgstr ""
+msgstr "Bagong mga tagagamit"
#. TRANS: Field label in user admin panel for setting new user welcome text.
msgid "New user welcome"
-msgstr ""
+msgstr "Maligayang pagtanggap sa bagong tagagamit"
#. TRANS: Tooltip in user admin panel for setting new user welcome text.
msgid "Welcome text for new users (maximum 255 characters)."
msgstr ""
+"Teksto ng maligayang pagtanggap para sa bagong mga tagagamit (pinakamataas "
+"ang 255 mga panitik)."
#. TRANS: Field label in user admin panel for setting default subscription for new users.
msgid "Default subscription"
-msgstr ""
+msgstr "Likas na katakdaan ng pagpapasipi"
#. TRANS: Tooltip in user admin panel for setting default subscription for new users.
msgid "Automatically subscribe new users to this user."
@@ -6516,11 +6530,11 @@ msgstr ""
#. TRANS: Form legend in user admin panel.
msgid "Invitations"
-msgstr ""
+msgstr "Mga paanyaya"
#. TRANS: Field label for checkbox in user admin panel for allowing users to invite friend using site e-mail.
msgid "Invitations enabled"
-msgstr ""
+msgstr "Paganahin ang mga paanyaya"
#. TRANS: Tooltip for checkbox in user admin panel for allowing users to invite friend using site e-mail.
msgid "Whether to allow users to invite new users."
@@ -6528,11 +6542,11 @@ msgstr ""
#. TRANS: Title for button to save user settings in user admin panel.
msgid "Save user settings."
-msgstr ""
+msgstr "Sagipin ang mga katakdaan ng tagagamit."
#. TRANS: Page title.
msgid "Authorize subscription"
-msgstr ""
+msgstr "Pahintulutan ang pagpapasipi"
#. TRANS: Page notice on "Authorize subscription" page.
msgid ""
@@ -6742,31 +6756,31 @@ msgstr ""
#. TRANS: Header for StatusNet plugins section on the version page.
msgid "Plugins"
-msgstr ""
+msgstr "Mga pampasak"
#. TRANS: Column header for plugins table on version page.
msgctxt "HEADER"
msgid "Name"
-msgstr ""
+msgstr "Pangalan"
#. TRANS: Column header for plugins table on version page.
msgctxt "HEADER"
msgid "Version"
-msgstr ""
+msgstr "Bersyon"
#. TRANS: Column header for plugins table on version page.
msgctxt "HEADER"
msgid "Author(s)"
-msgstr ""
+msgstr "(Mga) may-akda"
#. TRANS: Column header for plugins table on version page.
msgctxt "HEADER"
msgid "Description"
-msgstr ""
+msgstr "Paglalarawan"
#. TRANS: Activity title when marking a notice as favorite.
msgid "Favor"
-msgstr ""
+msgstr "Kagiliwan"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
@@ -6814,7 +6828,7 @@ msgstr[1] ""
#. TRANS: Client exception thrown if a file upload does not have a valid name.
msgid "Invalid filename."
-msgstr ""
+msgstr "Hindi katanggap-tanggap na pangalan ng talaksan."
#. TRANS: Exception thrown providing an invalid profile ID.
#. TRANS: %s is the invalid profile ID.
@@ -6830,19 +6844,19 @@ msgstr ""
#. TRANS: Exception thrown when joining a group fails.
msgid "Group join failed."
-msgstr ""
+msgstr "Nabigo ang pagsali sa pangkat."
#. TRANS: Exception thrown when trying to leave a group the user is not a member of.
msgid "Not part of group."
-msgstr ""
+msgstr "Hindi kabahagi ng pangkat."
#. TRANS: Exception thrown when trying to leave a group fails.
msgid "Group leave failed."
-msgstr ""
+msgstr "Nabigo ang paglisan mula sa pangkat."
#. TRANS: Activity title.
msgid "Join"
-msgstr ""
+msgstr "Sumali"
#. TRANS: Success message for subscribe to group attempt through OStatus.
#. TRANS: %1$s is the member name, %2$s is the subscribed group's name.
@@ -6883,10 +6897,11 @@ msgid "No such profile (%1$d) for notice (%2$d)."
msgstr ""
#. TRANS: Server exception. %s are the error details.
-#, fuzzy, php-format
+#, php-format
msgid "Database error inserting hashtag: %s."
msgstr ""
-"Kamalian ng kalipunan ng dato sa pagsisingit ng oauth_token_association."
+"Kamalian ng kalipunan ng dato sa pagsisingit ng tatak ng muling paghahayag "
+"na: %s."
#. TRANS: Client exception thrown if a notice contains too many characters.
msgid "Problem saving notice. Too long."
@@ -6940,7 +6955,7 @@ msgstr ""
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
msgid "Problem saving notice."
-msgstr ""
+msgstr "Suliranin sa pagsagip ng pabatid."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
msgid "Bad type provided to saveKnownGroups."
@@ -7801,9 +7816,12 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s - %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s - %2$s"
+msgstr[1] "%1$s - %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7824,9 +7842,12 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -8890,52 +8911,52 @@ msgstr ""
#. TRANS: Menu item title in mailbox menu. Leads to incoming private messages.
msgid "Your incoming messages."
-msgstr ""
+msgstr "Ang parating mong mga mensahe."
#. TRANS: Menu item in mailbox menu. Leads to outgoing private messages.
msgctxt "MENU"
msgid "Outbox"
-msgstr ""
+msgstr "Kahong-labasan"
#. TRANS: Menu item title in mailbox menu. Leads to outgoing private messages.
msgid "Your sent messages."
-msgstr ""
+msgstr "Mga mensaheng ipinadala mo."
#. TRANS: Error message in incoming mail handler used when an incoming e-mail cannot be processed.
msgid "Could not parse message."
-msgstr ""
+msgstr "Hindi mabanghay ang mensahe."
#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a registered user.
msgid "Not a registered user."
-msgstr ""
+msgstr "Isang hindi nagpatalang tagagamit."
#. TRANS: Error message in incoming mail handler used when an incoming e-mail is not from a user's incoming e-mail address.
msgid "Sorry, that is not your incoming email address."
-msgstr ""
+msgstr "Paumahin, hindi iyan ang iyong tirahan ng parating na e-liham."
#. TRANS: Error message in incoming mail handler used when no incoming e-mail is allowed.
msgid "Sorry, no incoming email allowed."
-msgstr ""
+msgstr "Paumahin, walang pinapahintulutang parating na e-liham."
#. TRANS: Error message in incoming mail handler used when an incoming e-mail is of an unsupported type.
#. TRANS: %s is the unsupported type.
#, php-format
msgid "Unsupported message type: %s."
-msgstr ""
+msgstr "Hindi tinatangkilik na uri ng mensahe: %s."
#. TRANS: Form legend for form to make a user a group admin.
msgid "Make user an admin of the group"
-msgstr ""
+msgstr "Gawing isang tagapangasiwa ng pangkat ang tagagamit"
#. TRANS: Button text for the form that will make a user administrator.
msgctxt "BUTTON"
msgid "Make Admin"
-msgstr ""
+msgstr "Gawing Tagapangasiwa"
#. TRANS: Submit button title.
msgctxt "TOOLTIP"
msgid "Make this user an admin"
-msgstr ""
+msgstr "Gawing isang tagapangasiwa ang tagagamit na ito"
#. TRANS: Client exception thrown when a database error was thrown during a file upload operation.
msgid "There was a database error while saving your file. Please try again."
@@ -9188,21 +9209,18 @@ msgid "No oEmbed API endpoint available."
msgstr "Walang makukuhang dulong-katapusan ng API ng oEmbed."
#. TRANS: Field label for people tag.
-#, fuzzy
msgctxt "LABEL"
msgid "Tag"
-msgstr "Mga tatak"
+msgstr "Tatak"
#. TRANS: Field title for people tag.
-#, fuzzy
msgid "Change the tag (letters, numbers, -, ., and _ are allowed)."
msgstr ""
-"Mga tatak para sa sarili mo (mga titik, mga bilang, -, ., at _), "
-"pinaghihiwalay-hiwalay ng kuwit- o puwang-."
+"Baguhin ang tatak (pinapahintulutan ang mga titik, mga bilang, -, ., at _)."
#. TRANS: Field title for description of people tag.
msgid "Describe the people tag or topic."
-msgstr ""
+msgstr "Ilarawan ang tatak ng mga tao o paksa."
#. TRANS: Field title for description of people tag.
#. TRANS: %d is the maximum number of characters for the description.
@@ -9213,13 +9231,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Button title to delete a people tag.
-#, fuzzy
msgid "Delete this people tag."
-msgstr "Burahin ang pangkat na ito."
+msgstr "Burahin ang ganitong tatak ng mga tao."
#. TRANS: Header in people tag edit form.
msgid "Add or remove people"
-msgstr ""
+msgstr "Magdagdag o magtanggal ng mga tao"
#. TRANS: Header in people tag edit form.
#, fuzzy
@@ -9280,7 +9297,6 @@ msgid "Edit people tag settings."
msgstr "Pagtatakda sa pagpunta"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "Baguhin"
@@ -9352,7 +9368,6 @@ msgid "People tags"
msgstr "Mga tao"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Tagagamit"
@@ -9902,45 +9917,42 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Form legend.
-#, fuzzy, php-format
+#, php-format
msgid "Search and list people"
-msgstr "Maghanap sa sityo"
+msgstr "Maghanap at magtala ng mga tao"
#. TRANS: Dropdown option for searching in profiles.
-#, fuzzy
msgid "Everything"
-msgstr "Lahat"
+msgstr "Lahat ng bagay"
#. TRANS: Dropdown option for searching in profiles.
-#, fuzzy
msgid "Fullname"
msgstr "Buong pangalan"
#. TRANS: Dropdown option for searching in profiles.
msgid "URI (Remote users)"
-msgstr ""
+msgstr "URI (Malayong mga tagagamit)"
#. TRANS: Dropdown field label.
-#, fuzzy
msgctxt "LABEL"
msgid "Search in"
-msgstr "Maghanap sa sityo"
+msgstr "Maghanap sa"
#. TRANS: Dropdown field title.
msgid "Choose a field to search."
-msgstr ""
+msgstr "Pumili ng isang hanay na hahanapin."
#. TRANS: Form legend.
#. TRANS: %1$s is a nickname, $2$s is a people tag.
-#, fuzzy, php-format
+#, php-format
msgid "Untag %1$s as %2$s"
-msgstr "%1$s - %2$s"
+msgstr "Huwag tatakan si %1$s bilang %2$s"
#. TRANS: Legend on form to add a tag to a profile.
#. TRANS: %1$s is a nickname, %2$s ia a people tag.
-#, fuzzy, php-format
+#, php-format
msgid "Tag %1$s as %2$s"
-msgstr "%1$s - %2$s"
+msgstr "Tatakan si %1$s bilang %2$s"
#. TRANS: Title for top posters section.
msgid "Top posters"
@@ -10042,7 +10054,7 @@ msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
msgid "about a day ago"
-msgstr ""
+msgstr "bandang isang araw na ang nakalilipas"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#, php-format
@@ -10053,7 +10065,7 @@ msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
msgid "about a month ago"
-msgstr ""
+msgstr "bandang isang buwan na ang nakalilipas"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#, php-format
@@ -10064,7 +10076,7 @@ msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
msgid "about a year ago"
-msgstr ""
+msgstr "bandang isang taon na ang nakalilipas"
#. TRANS: Web color exception thrown when a hexadecimal color code does not validate.
#. TRANS: %s is the provided (invalid) color code.
diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po
index 214904d397..0ef43a48ca 100644
--- a/locale/uk/LC_MESSAGES/statusnet.po
+++ b/locale/uk/LC_MESSAGES/statusnet.po
@@ -12,18 +12,18 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:48+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:40+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= "
"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -186,7 +186,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -2293,7 +2293,6 @@ msgid "No tagger or ID."
msgstr "Немає імені або ІД."
#. TRANS: Client error displayed when referring to non-local user.
-#, fuzzy
msgid "Not a local user."
msgstr "Такого користувача немає."
@@ -7870,9 +7869,13 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s та %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s та %2$s"
+msgstr[1] "%1$s та %2$s"
+msgstr[2] "%1$s та %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7881,9 +7884,9 @@ msgstr ", "
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
-msgstr "Неприпустимий теґ: «%s»."
+msgstr "Недійсний теґ: «%s»"
#. TRANS: Error displayed if untagging a user fails.
#. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation).
@@ -7893,9 +7896,13 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9452,9 +9459,8 @@ msgid "Edit people tag settings."
msgstr "Змінити налаштування профілю."
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
-msgstr "Змінити"
+msgstr "Правка"
#. TRANS: Privacy mode text in people tag list item for private tags.
#, fuzzy
@@ -9524,7 +9530,6 @@ msgid "People tags"
msgstr "Люди"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "Користувач"
@@ -10273,10 +10278,3 @@ msgstr "Неправильний XML, корінь XRD відсутній."
#, php-format
msgid "Getting backup from file '%s'."
msgstr "Отримання резервної копії файлу «%s»."
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr ""
-#~ "Ви маєте можливість позначати теґами тих, до кого ви підписані, а також "
-#~ "тих, хто є підписаним до вас."
diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po
index 6b543a108f..87b6c2e275 100644
--- a/locale/zh_CN/LC_MESSAGES/statusnet.po
+++ b/locale/zh_CN/LC_MESSAGES/statusnet.po
@@ -15,18 +15,18 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:50+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:41+0000\n"
"Language-Team: Simplified Chinese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hans\n"
"X-Message-Group: #out-statusnet-core\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-POT-Import-Date: 2011-04-09 18:56:02+0000\n"
+"X-POT-Import-Date: 2011-04-11 13:12:24+0000\n"
#. TRANS: Database error message.
#, php-format
@@ -179,7 +179,7 @@ msgstr ""
#. TRANS: %s is a profile URL.
#, php-format
msgid ""
-"There was a problem tagging %s.The remote server is probably not responding "
+"There was a problem tagging %s. The remote server is probably not responding "
"correctly, please try retrying later."
msgstr ""
@@ -7724,9 +7724,11 @@ msgstr ""
#. TRANS: Succes message displayed if tagging a user succeeds.
#. TRANS: %1$s is the tagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags added (not part of message).
#, fuzzy, php-format
msgid "%1$s was tagged %2$s"
-msgstr "%1$s - %2$s"
+msgid_plural "%1$s was tagged %2$s"
+msgstr[0] "%1$s - %2$s"
#. TRANS: Separator for list of tags.
#. TRANS: Separator in list of user names like "You, Bob, Mary".
@@ -7735,9 +7737,9 @@ msgstr ""
#. TRANS: Error displayed if a given tag is invalid.
#. TRANS: %s is the invalid tag.
-#, fuzzy, php-format
+#, php-format
msgid "Invalid tag: \"%s\""
-msgstr "无效的标记: %s。"
+msgstr "无效的标签:\"%s\"。"
#. TRANS: Error displayed if untagging a user fails.
#. TRANS: %1$s is the untagged user, %2$s is the error message (no punctuation).
@@ -7747,9 +7749,11 @@ msgstr ""
#. TRANS: Succes message displayed if untagging a user succeeds.
#. TRANS: %1$s is the untagged user's nickname, %2$s is a list of tags.
+#. TRANS: Plural is decided based on the number of tags removed (not part of message).
#, php-format
-msgid "The following tag(s) were removed from user %1$s: %2$s."
-msgstr ""
+msgid "The following tag was removed from user %1$s: %2$s."
+msgid_plural "The following tags were removed from user %1$s: %2$s."
+msgstr[0] ""
#. TRANS: Whois output.
#. TRANS: %1$s nickname of the queried user, %2$s is their profile URL.
@@ -9293,7 +9297,6 @@ msgid "Edit people tag settings."
msgstr "编辑个人信息设置"
#. TRANS: Text for link to edit people tag settings.
-#, fuzzy
msgid "Edit"
msgstr "编辑"
@@ -9366,7 +9369,6 @@ msgid "People tags"
msgstr "用户"
#. TRANS: Replaces %s in 'People tags by %s'. (Yes, we know we need to fix this.)
-#, fuzzy
msgid "User"
msgstr "用户"
@@ -10115,8 +10117,3 @@ msgstr "不合法的XML, 缺少XRD根"
#, php-format
msgid "Getting backup from file '%s'."
msgstr "从文件'%s'获取备份。"
-
-#~ msgid ""
-#~ "You can only tag people you are subscribed to or who are subscribed to "
-#~ "you."
-#~ msgstr "你只能给你关注或关注你的人添加标签。"
diff --git a/plugins/APC/locale/ast/LC_MESSAGES/APC.po b/plugins/APC/locale/ast/LC_MESSAGES/APC.po
new file mode 100644
index 0000000000..b9737db277
--- /dev/null
+++ b/plugins/APC/locale/ast/LC_MESSAGES/APC.po
@@ -0,0 +1,30 @@
+# Translation of StatusNet - APC to Asturian (Asturianu)
+# Exported from translatewiki.net
+#
+# Author: Xuacu
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - APC\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:47+0000\n"
+"Language-Team: Asturian \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: ast\n"
+"X-Message-Group: #out-statusnet-plugin-apc\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. TRANS: Plugin description.
+msgid ""
+"Use the APC variable cache "
+"to cache query results."
+msgstr ""
+"Usar la caché variable APC "
+"pa cachear los resultaos de la consulta."
diff --git a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po
index ca368dc61b..89a7b76467 100644
--- a/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/be-tarask/LC_MESSAGES/APC.po
@@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:31+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:48+0000\n"
"Language-Team: Belarusian (Taraškievica orthography) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: be-tarask\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/br/LC_MESSAGES/APC.po b/plugins/APC/locale/br/LC_MESSAGES/APC.po
index 45e3293ca3..edd9233a4c 100644
--- a/plugins/APC/locale/br/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/br/LC_MESSAGES/APC.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:32+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:48+0000\n"
"Language-Team: Breton \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: br\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/de/LC_MESSAGES/APC.po b/plugins/APC/locale/de/LC_MESSAGES/APC.po
index 49718a7763..5a7bbc918f 100644
--- a/plugins/APC/locale/de/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/de/LC_MESSAGES/APC.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:32+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:48+0000\n"
"Language-Team: German \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/es/LC_MESSAGES/APC.po b/plugins/APC/locale/es/LC_MESSAGES/APC.po
index cb7d3e15b8..c441bed43c 100644
--- a/plugins/APC/locale/es/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/es/LC_MESSAGES/APC.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:32+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:48+0000\n"
"Language-Team: Spanish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: es\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/fr/LC_MESSAGES/APC.po b/plugins/APC/locale/fr/LC_MESSAGES/APC.po
index dd312eab64..5648f84745 100644
--- a/plugins/APC/locale/fr/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/fr/LC_MESSAGES/APC.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:32+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:48+0000\n"
"Language-Team: French \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/gl/LC_MESSAGES/APC.po b/plugins/APC/locale/gl/LC_MESSAGES/APC.po
index 64436e73ff..250cbf1bac 100644
--- a/plugins/APC/locale/gl/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/gl/LC_MESSAGES/APC.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:32+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:48+0000\n"
"Language-Team: Galician \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: gl\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/he/LC_MESSAGES/APC.po b/plugins/APC/locale/he/LC_MESSAGES/APC.po
index 07e82a2faa..e0da4c00d6 100644
--- a/plugins/APC/locale/he/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/he/LC_MESSAGES/APC.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:32+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:48+0000\n"
"Language-Team: Hebrew \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: he\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/ia/LC_MESSAGES/APC.po b/plugins/APC/locale/ia/LC_MESSAGES/APC.po
index f0cc213dc1..d496b7ecf0 100644
--- a/plugins/APC/locale/ia/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/ia/LC_MESSAGES/APC.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:32+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:48+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/id/LC_MESSAGES/APC.po b/plugins/APC/locale/id/LC_MESSAGES/APC.po
index 0a7dc1f613..29ce6423d6 100644
--- a/plugins/APC/locale/id/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/id/LC_MESSAGES/APC.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:32+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:48+0000\n"
"Language-Team: Indonesian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: id\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/mk/LC_MESSAGES/APC.po b/plugins/APC/locale/mk/LC_MESSAGES/APC.po
index b941d174c5..5e05a535df 100644
--- a/plugins/APC/locale/mk/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/mk/LC_MESSAGES/APC.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:32+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:48+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/nb/LC_MESSAGES/APC.po b/plugins/APC/locale/nb/LC_MESSAGES/APC.po
index 7a5d636c71..261ded7fca 100644
--- a/plugins/APC/locale/nb/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/nb/LC_MESSAGES/APC.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:32+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:48+0000\n"
"Language-Team: Norwegian (bokmål) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: no\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/nl/LC_MESSAGES/APC.po b/plugins/APC/locale/nl/LC_MESSAGES/APC.po
index a68d6433e4..c7f625a3c5 100644
--- a/plugins/APC/locale/nl/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/nl/LC_MESSAGES/APC.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:32+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:48+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/pl/LC_MESSAGES/APC.po b/plugins/APC/locale/pl/LC_MESSAGES/APC.po
index 08483d0917..f99ecae6f1 100644
--- a/plugins/APC/locale/pl/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/pl/LC_MESSAGES/APC.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:32+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:48+0000\n"
"Language-Team: Polish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pl\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/pt/LC_MESSAGES/APC.po b/plugins/APC/locale/pt/LC_MESSAGES/APC.po
index 488641eae5..f6440ed2d3 100644
--- a/plugins/APC/locale/pt/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/pt/LC_MESSAGES/APC.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:32+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:48+0000\n"
"Language-Team: Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po
index f7485066f3..cf03f43c9c 100644
--- a/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/pt_BR/LC_MESSAGES/APC.po
@@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:32+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:48+0000\n"
"Language-Team: Brazilian Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt-br\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/ru/LC_MESSAGES/APC.po b/plugins/APC/locale/ru/LC_MESSAGES/APC.po
index a2db7a6496..6f07a0c432 100644
--- a/plugins/APC/locale/ru/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/ru/LC_MESSAGES/APC.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:32+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:48+0000\n"
"Language-Team: Russian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/tl/LC_MESSAGES/APC.po b/plugins/APC/locale/tl/LC_MESSAGES/APC.po
index ae8115e721..903c1d02b6 100644
--- a/plugins/APC/locale/tl/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/tl/LC_MESSAGES/APC.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:32+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:48+0000\n"
"Language-Team: Tagalog \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/uk/LC_MESSAGES/APC.po b/plugins/APC/locale/uk/LC_MESSAGES/APC.po
index a441c15f58..946ffc9994 100644
--- a/plugins/APC/locale/uk/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/uk/LC_MESSAGES/APC.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:32+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:48+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po
index fad54eca23..19b674697e 100644
--- a/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po
+++ b/plugins/APC/locale/zh_CN/LC_MESSAGES/APC.po
@@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:32+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:48+0000\n"
"Language-Team: Simplified Chinese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:00+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hans\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
diff --git a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po
index f0415109a9..6d7d8db0c3 100644
--- a/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po
+++ b/plugins/AccountManager/locale/af/LC_MESSAGES/AccountManager.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AccountManager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:26+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:42+0000\n"
"Language-Team: Afrikaans \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-03 13:41:41+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-09 18:55:57+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: af\n"
"X-Message-Group: #out-statusnet-plugin-accountmanager\n"
diff --git a/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po
index d456cfab88..9d7a2383b8 100644
--- a/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po
+++ b/plugins/AccountManager/locale/ast/LC_MESSAGES/AccountManager.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AccountManager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:26+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:42+0000\n"
"Language-Team: Asturian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-03 13:41:41+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-09 18:55:57+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ast\n"
"X-Message-Group: #out-statusnet-plugin-accountmanager\n"
diff --git a/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po
index 30f7030ecf..7e98c3f650 100644
--- a/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po
+++ b/plugins/AccountManager/locale/ca/LC_MESSAGES/AccountManager.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AccountManager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:26+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:42+0000\n"
"Language-Team: Catalan \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-03 13:41:41+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-09 18:55:57+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ca\n"
"X-Message-Group: #out-statusnet-plugin-accountmanager\n"
diff --git a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po
index 41b7088195..c85b755615 100644
--- a/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po
+++ b/plugins/AccountManager/locale/de/LC_MESSAGES/AccountManager.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AccountManager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:26+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:42+0000\n"
"Language-Team: German \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-03 13:41:41+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-09 18:55:57+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n"
"X-Message-Group: #out-statusnet-plugin-accountmanager\n"
diff --git a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po
index e754a91b34..ad3076de8b 100644
--- a/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po
+++ b/plugins/AccountManager/locale/fi/LC_MESSAGES/AccountManager.po
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AccountManager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:26+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:42+0000\n"
"Language-Team: Finnish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-03 13:41:41+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-09 18:55:57+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fi\n"
"X-Message-Group: #out-statusnet-plugin-accountmanager\n"
diff --git a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po
index 9b604b2865..0735330e5c 100644
--- a/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po
+++ b/plugins/AccountManager/locale/fr/LC_MESSAGES/AccountManager.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AccountManager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:26+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:42+0000\n"
"Language-Team: French \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-03 13:41:41+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-09 18:55:57+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-plugin-accountmanager\n"
diff --git a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po
index 4e89eeb2be..6c5229f810 100644
--- a/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po
+++ b/plugins/AccountManager/locale/ia/LC_MESSAGES/AccountManager.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AccountManager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:26+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:42+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-03 13:41:41+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-09 18:55:57+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-accountmanager\n"
diff --git a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po
index 739c04553a..a88192bebe 100644
--- a/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po
+++ b/plugins/AccountManager/locale/mk/LC_MESSAGES/AccountManager.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AccountManager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:26+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:42+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-03 13:41:41+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-09 18:55:57+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-accountmanager\n"
diff --git a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po
index 2747159897..0820645302 100644
--- a/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po
+++ b/plugins/AccountManager/locale/nl/LC_MESSAGES/AccountManager.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AccountManager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:26+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:42+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-03 13:41:41+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-09 18:55:57+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-accountmanager\n"
diff --git a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po
index 497c95880e..8670a22362 100644
--- a/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po
+++ b/plugins/AccountManager/locale/pt/LC_MESSAGES/AccountManager.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AccountManager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:26+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:42+0000\n"
"Language-Team: Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-03 13:41:41+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-09 18:55:57+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n"
"X-Message-Group: #out-statusnet-plugin-accountmanager\n"
diff --git a/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po
index 023072dc3f..b92e0f9a04 100644
--- a/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po
+++ b/plugins/AccountManager/locale/ru/LC_MESSAGES/AccountManager.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AccountManager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:26+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:42+0000\n"
"Language-Team: Russian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-03 13:41:41+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-09 18:55:57+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: #out-statusnet-plugin-accountmanager\n"
diff --git a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po
index c5f863d383..1deb4e20e6 100644
--- a/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po
+++ b/plugins/AccountManager/locale/tl/LC_MESSAGES/AccountManager.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AccountManager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:26+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:42+0000\n"
"Language-Team: Tagalog \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-03 13:41:41+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-09 18:55:57+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-accountmanager\n"
diff --git a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po
index 9b225accfd..244c3e75a7 100644
--- a/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po
+++ b/plugins/AccountManager/locale/uk/LC_MESSAGES/AccountManager.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AccountManager\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:26+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:42+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-03 13:41:41+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-09 18:55:57+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-accountmanager\n"
diff --git a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po
index 3d74898fd8..5d4a639624 100644
--- a/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/be-tarask/LC_MESSAGES/Adsense.po
@@ -10,14 +10,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:27+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:44+0000\n"
"Language-Team: Belarusian (Taraškievica orthography) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:08+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: be-tarask\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po
index 44574ecbb6..ed7c78d268 100644
--- a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:27+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:44+0000\n"
"Language-Team: Breton \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:08+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: br\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po
index 63d45f001f..cfc9067d76 100644
--- a/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/ca/LC_MESSAGES/Adsense.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:54+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:44+0000\n"
"Language-Team: Catalan \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:55:50+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:08+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ca\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po
index e0ccf78a53..4f572f3963 100644
--- a/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/de/LC_MESSAGES/Adsense.po
@@ -11,13 +11,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:28+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:44+0000\n"
"Language-Team: German \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:08+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po
index 6d9f20347b..30dadae579 100644
--- a/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/es/LC_MESSAGES/Adsense.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:28+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:44+0000\n"
"Language-Team: Spanish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:08+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: es\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po
index a14a0097ef..b2a2434d53 100644
--- a/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/fr/LC_MESSAGES/Adsense.po
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:28+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:44+0000\n"
"Language-Team: French \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:08+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po
index 9cba9eb68f..a60c5f0c49 100644
--- a/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/gl/LC_MESSAGES/Adsense.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:28+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:44+0000\n"
"Language-Team: Galician \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:08+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: gl\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po
index 317a9557a1..e5e4a44424 100644
--- a/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/ia/LC_MESSAGES/Adsense.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:54+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:44+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:55:50+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:08+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po
index 3aee5293a7..650907a213 100644
--- a/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/it/LC_MESSAGES/Adsense.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:28+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:44+0000\n"
"Language-Team: Italian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:08+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: it\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po
index 08a44029fd..1c0e72b580 100644
--- a/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/ka/LC_MESSAGES/Adsense.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:28+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:44+0000\n"
"Language-Team: Georgian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:08+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ka\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po
index ea2ddcc07a..7c24c86021 100644
--- a/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/mk/LC_MESSAGES/Adsense.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:54+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:44+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:55:50+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:08+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po
index 34fdad2519..da1553acd6 100644
--- a/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/nl/LC_MESSAGES/Adsense.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:54+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:44+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:55:50+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:08+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po
index c224037bad..db0b8229d6 100644
--- a/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/pt/LC_MESSAGES/Adsense.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:28+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:44+0000\n"
"Language-Team: Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:08+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po
index 9f6fad8699..eea00c4ce3 100644
--- a/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/pt_BR/LC_MESSAGES/Adsense.po
@@ -10,14 +10,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:28+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:44+0000\n"
"Language-Team: Brazilian Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:08+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt-br\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po
index 13b2547732..02464a0729 100644
--- a/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/ru/LC_MESSAGES/Adsense.po
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:28+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:44+0000\n"
"Language-Team: Russian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:08+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po
index e6c2f36bd0..ddec4b16e8 100644
--- a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:55+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:44+0000\n"
"Language-Team: Tagalog \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:55:50+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:08+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po
index 5fe97a8897..5f8f28a36a 100644
--- a/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/uk/LC_MESSAGES/Adsense.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:55+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:45+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:55:50+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:08+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po
index d2844cdb19..19082d6dc8 100644
--- a/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po
+++ b/plugins/Adsense/locale/zh_CN/LC_MESSAGES/Adsense.po
@@ -10,14 +10,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:29+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:45+0000\n"
"Language-Team: Simplified Chinese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:05:58+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:08+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hans\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
diff --git a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po
index f9a53215f0..1be9f52f6f 100644
--- a/plugins/Aim/locale/af/LC_MESSAGES/Aim.po
+++ b/plugins/Aim/locale/af/LC_MESSAGES/Aim.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Aim\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:29+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:45+0000\n"
"Language-Team: Afrikaans \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-26 16:22:29+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:09+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: af\n"
"X-Message-Group: #out-statusnet-plugin-aim\n"
diff --git a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po
index 00790121b9..d34df79290 100644
--- a/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po
+++ b/plugins/Aim/locale/ia/LC_MESSAGES/Aim.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Aim\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:55+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:45+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:56:38+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:09+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-aim\n"
diff --git a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po
index 4e6d218fc0..087a6fea73 100644
--- a/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po
+++ b/plugins/Aim/locale/mk/LC_MESSAGES/Aim.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Aim\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:55+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:45+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:56:38+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:09+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-aim\n"
diff --git a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po
index 177e03b717..ecd97cb1e2 100644
--- a/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po
+++ b/plugins/Aim/locale/nl/LC_MESSAGES/Aim.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Aim\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:55+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:45+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:56:38+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:09+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-aim\n"
diff --git a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po
index d136dff2df..808ca48a07 100644
--- a/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po
+++ b/plugins/Aim/locale/pt/LC_MESSAGES/Aim.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Aim\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:29+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:45+0000\n"
"Language-Team: Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-26 16:22:29+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:09+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n"
"X-Message-Group: #out-statusnet-plugin-aim\n"
diff --git a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po
index b4955800d9..4b15c0881f 100644
--- a/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po
+++ b/plugins/Aim/locale/sv/LC_MESSAGES/Aim.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Aim\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:29+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:45+0000\n"
"Language-Team: Swedish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-26 16:22:29+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:09+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: sv\n"
"X-Message-Group: #out-statusnet-plugin-aim\n"
diff --git a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po
index 72b52f382a..c16647750d 100644
--- a/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po
+++ b/plugins/Aim/locale/tl/LC_MESSAGES/Aim.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Aim\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:56+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:45+0000\n"
"Language-Team: Tagalog \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:56:38+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:09+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-aim\n"
diff --git a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po
index 421d29905c..b15c71234f 100644
--- a/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po
+++ b/plugins/Aim/locale/uk/LC_MESSAGES/Aim.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Aim\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:56+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:45+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:56:38+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:09+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-aim\n"
diff --git a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po
index 83b2c15a05..02fc60c02f 100644
--- a/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/be-tarask/LC_MESSAGES/AnonymousFave.po
@@ -10,14 +10,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:30+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:46+0000\n"
"Language-Team: Belarusian (Taraškievica orthography) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:11+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: be-tarask\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po
index 66612071da..f2c8002bd3 100644
--- a/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/br/LC_MESSAGES/AnonymousFave.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:30+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:47+0000\n"
"Language-Team: Breton \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:11+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: br\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po
index 20497fafd4..78c057aa47 100644
--- a/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/de/LC_MESSAGES/AnonymousFave.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:31+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:47+0000\n"
"Language-Team: German \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:11+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po
index dd0486eed9..5324f98be7 100644
--- a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:31+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:47+0000\n"
"Language-Team: Spanish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:11+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: es\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po
index c8d9e6b6fe..085f003f7c 100644
--- a/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/fr/LC_MESSAGES/AnonymousFave.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:31+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:47+0000\n"
"Language-Team: French \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:11+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po
index 8c3499a96e..56628a2470 100644
--- a/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/gl/LC_MESSAGES/AnonymousFave.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:31+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:47+0000\n"
"Language-Team: Galician \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:11+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: gl\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po
index f3f9246d49..bcacc8f1bd 100644
--- a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:57+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:47+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:56:41+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:11+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po
index 40430658dd..98d1760e48 100644
--- a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:57+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:47+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:56:41+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:11+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po
index bee25f8a7f..63ddf9db91 100644
--- a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:57+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:47+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:56:41+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:11+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po
index 4bc0b27a5e..fac034753b 100644
--- a/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/pt/LC_MESSAGES/AnonymousFave.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:31+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:47+0000\n"
"Language-Team: Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:05:59+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:11+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po
index b276c5806e..9572df516f 100644
--- a/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/tl/LC_MESSAGES/AnonymousFave.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:57+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:47+0000\n"
"Language-Team: Tagalog \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:56:41+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:11+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po
index 3fb6983c24..3038d6f0e4 100644
--- a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po
+++ b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:57+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:47+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:56:41+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:11+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
diff --git a/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po
new file mode 100644
index 0000000000..53377e710e
--- /dev/null
+++ b/plugins/ApiLogger/locale/ast/LC_MESSAGES/ApiLogger.po
@@ -0,0 +1,26 @@
+# Translation of StatusNet - ApiLogger to Asturian (Asturianu)
+# Exported from translatewiki.net
+#
+# Author: Xuacu
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - ApiLogger\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:49+0000\n"
+"Language-Team: Asturian \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2011-04-11 13:14:13+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: ast\n"
+"X-Message-Group: #out-statusnet-plugin-apilogger\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. TRANS: Plugin description.
+msgid "Allows random sampling of API requests."
+msgstr "Permite un muestréu al debalu de les peticiones del API."
diff --git a/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po
index 225776db48..1d6e888e7d 100644
--- a/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po
+++ b/plugins/ApiLogger/locale/ia/LC_MESSAGES/ApiLogger.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - ApiLogger\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:59+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:49+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-10 22:44:26+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:13+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-apilogger\n"
diff --git a/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po
index 3e765a3450..f13053d546 100644
--- a/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po
+++ b/plugins/ApiLogger/locale/mk/LC_MESSAGES/ApiLogger.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - ApiLogger\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:25:59+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:49+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-10 22:44:26+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:13+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-apilogger\n"
diff --git a/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po b/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po
new file mode 100644
index 0000000000..50b4c56e60
--- /dev/null
+++ b/plugins/ApiLogger/locale/nl/LC_MESSAGES/ApiLogger.po
@@ -0,0 +1,26 @@
+# Translation of StatusNet - ApiLogger to Dutch (Nederlands)
+# Exported from translatewiki.net
+#
+# Author: Siebrand
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - ApiLogger\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:49+0000\n"
+"Language-Team: Dutch \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2011-04-11 13:14:13+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: nl\n"
+"X-Message-Group: #out-statusnet-plugin-apilogger\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. TRANS: Plugin description.
+msgid "Allows random sampling of API requests."
+msgstr "Maakt het mogelijk om steekproeven te nemen van API-verzoeken."
diff --git a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po
index 6c50a7bf28..9082bab9e5 100644
--- a/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po
+++ b/plugins/AutoSandbox/locale/be-tarask/LC_MESSAGES/AutoSandbox.po
@@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AutoSandbox\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:34+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:50+0000\n"
"Language-Team: Belarusian (Taraškievica orthography) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:20+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: be-tarask\n"
"X-Message-Group: #out-statusnet-plugin-autosandbox\n"
diff --git a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po
index a83331065a..f5ed78a419 100644
--- a/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po
+++ b/plugins/AutoSandbox/locale/br/LC_MESSAGES/AutoSandbox.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AutoSandbox\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:34+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:50+0000\n"
"Language-Team: Breton \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:20+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: br\n"
"X-Message-Group: #out-statusnet-plugin-autosandbox\n"
diff --git a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po
index 6ca673303b..e13613ac2f 100644
--- a/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po
+++ b/plugins/AutoSandbox/locale/de/LC_MESSAGES/AutoSandbox.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AutoSandbox\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:34+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:50+0000\n"
"Language-Team: German \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:20+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n"
"X-Message-Group: #out-statusnet-plugin-autosandbox\n"
diff --git a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po
index bc86e848a7..f6b687aefb 100644
--- a/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po
+++ b/plugins/AutoSandbox/locale/es/LC_MESSAGES/AutoSandbox.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AutoSandbox\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:34+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:50+0000\n"
"Language-Team: Spanish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:20+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: es\n"
"X-Message-Group: #out-statusnet-plugin-autosandbox\n"
diff --git a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po
index bf987f2b71..8d1af304cf 100644
--- a/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po
+++ b/plugins/AutoSandbox/locale/fr/LC_MESSAGES/AutoSandbox.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AutoSandbox\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:34+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:50+0000\n"
"Language-Team: French \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:20+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-plugin-autosandbox\n"
diff --git a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po
index ccd222c8a6..3b133f58ba 100644
--- a/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po
+++ b/plugins/AutoSandbox/locale/ia/LC_MESSAGES/AutoSandbox.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AutoSandbox\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:01+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:50+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:29+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:20+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-autosandbox\n"
diff --git a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po
index fef703cb38..6e665f2136 100644
--- a/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po
+++ b/plugins/AutoSandbox/locale/mk/LC_MESSAGES/AutoSandbox.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AutoSandbox\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:01+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:50+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:29+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:20+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-autosandbox\n"
diff --git a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po
index 8e269b5273..37eb5aafab 100644
--- a/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po
+++ b/plugins/AutoSandbox/locale/nl/LC_MESSAGES/AutoSandbox.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AutoSandbox\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:01+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:50+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:29+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:20+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-autosandbox\n"
diff --git a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po
index 8dae510d54..394f1e6c3f 100644
--- a/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po
+++ b/plugins/AutoSandbox/locale/ru/LC_MESSAGES/AutoSandbox.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AutoSandbox\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:01+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:50+0000\n"
"Language-Team: Russian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:29+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:20+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: #out-statusnet-plugin-autosandbox\n"
diff --git a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po
index 985ffa34e7..22b32d7d05 100644
--- a/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po
+++ b/plugins/AutoSandbox/locale/tl/LC_MESSAGES/AutoSandbox.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AutoSandbox\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:01+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:50+0000\n"
"Language-Team: Tagalog \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:29+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:20+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-autosandbox\n"
diff --git a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po
index 827211f406..a1f49d9c36 100644
--- a/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po
+++ b/plugins/AutoSandbox/locale/uk/LC_MESSAGES/AutoSandbox.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AutoSandbox\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:01+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:50+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:29+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:20+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-autosandbox\n"
diff --git a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po
index e2a138b78b..f7355d4f03 100644
--- a/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po
+++ b/plugins/AutoSandbox/locale/zh_CN/LC_MESSAGES/AutoSandbox.po
@@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AutoSandbox\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:35+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:50+0000\n"
"Language-Team: Simplified Chinese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:01+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:20+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hans\n"
"X-Message-Group: #out-statusnet-plugin-autosandbox\n"
diff --git a/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po
new file mode 100644
index 0000000000..6423240700
--- /dev/null
+++ b/plugins/Autocomplete/locale/ast/LC_MESSAGES/Autocomplete.po
@@ -0,0 +1,31 @@
+# Translation of StatusNet - Autocomplete to Asturian (Asturianu)
+# Exported from translatewiki.net
+#
+# Author: Xuacu
+# --
+# This file is distributed under the same license as the StatusNet package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: StatusNet - Autocomplete\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:49+0000\n"
+"Language-Team: Asturian \n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-POT-Import-Date: 2011-04-11 13:14:15+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
+"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
+"X-Language-Code: ast\n"
+"X-Message-Group: #out-statusnet-plugin-autocomplete\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. TRANS: Plugin description.
+msgid "The autocomplete plugin adds autocompletion for @ replies."
+msgstr ""
+"El plugin autocompletar amiesta completáu automático a les rempuestes @"
+
+#. TRANS: Client exception in autocomplete plugin.
+msgid "Access forbidden."
+msgstr "Accesu torgáu."
diff --git a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po
index f4441d1495..1ea00f120c 100644
--- a/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po
+++ b/plugins/Autocomplete/locale/ia/LC_MESSAGES/Autocomplete.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Autocomplete\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:00+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:49+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-10 08:25:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:15+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-autocomplete\n"
diff --git a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po
index 6f0d1e8934..db72d7b25c 100644
--- a/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po
+++ b/plugins/Autocomplete/locale/mk/LC_MESSAGES/Autocomplete.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Autocomplete\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:00+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:49+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-10 08:25:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:15+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-autocomplete\n"
diff --git a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po
index fc69d44448..3c15631498 100644
--- a/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po
+++ b/plugins/Autocomplete/locale/nl/LC_MESSAGES/Autocomplete.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Autocomplete\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:00+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:49+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-10 08:25:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:15+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-autocomplete\n"
diff --git a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po
index 109f9a4aa4..2ba45d1ff0 100644
--- a/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po
+++ b/plugins/Autocomplete/locale/tl/LC_MESSAGES/Autocomplete.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Autocomplete\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:00+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:49+0000\n"
"Language-Team: Tagalog \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-10 08:25:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:15+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-autocomplete\n"
diff --git a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po
index 32c2171dbb..26a020efec 100644
--- a/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po
+++ b/plugins/Autocomplete/locale/uk/LC_MESSAGES/Autocomplete.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Autocomplete\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:00+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:49+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-10 08:25:24+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:15+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-autocomplete\n"
diff --git a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po
index f95e6b5072..0ad0b6b779 100644
--- a/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po
+++ b/plugins/Awesomeness/locale/be-tarask/LC_MESSAGES/Awesomeness.po
@@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Awesomeness\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:35+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:51+0000\n"
"Language-Team: Belarusian (Taraškievica orthography) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: be-tarask\n"
"X-Message-Group: #out-statusnet-plugin-awesomeness\n"
diff --git a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po
index eca5639947..baafb0b404 100644
--- a/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po
+++ b/plugins/Awesomeness/locale/de/LC_MESSAGES/Awesomeness.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Awesomeness\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:35+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:51+0000\n"
"Language-Team: German \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n"
"X-Message-Group: #out-statusnet-plugin-awesomeness\n"
diff --git a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po
index d68d8c0e2c..9a4a08e189 100644
--- a/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po
+++ b/plugins/Awesomeness/locale/fi/LC_MESSAGES/Awesomeness.po
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Awesomeness\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:35+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:51+0000\n"
"Language-Team: Finnish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fi\n"
"X-Message-Group: #out-statusnet-plugin-awesomeness\n"
diff --git a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po
index b6fafd3ecb..ab0e72eb53 100644
--- a/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po
+++ b/plugins/Awesomeness/locale/fr/LC_MESSAGES/Awesomeness.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Awesomeness\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:35+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:51+0000\n"
"Language-Team: French \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-plugin-awesomeness\n"
diff --git a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po
index 5baa5f3026..b7092af46c 100644
--- a/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po
+++ b/plugins/Awesomeness/locale/ia/LC_MESSAGES/Awesomeness.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Awesomeness\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:35+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:51+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-awesomeness\n"
diff --git a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po
index 47dd55a493..5fb970fe6b 100644
--- a/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po
+++ b/plugins/Awesomeness/locale/mk/LC_MESSAGES/Awesomeness.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Awesomeness\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:35+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:51+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-awesomeness\n"
diff --git a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po
index ef8c5efd1c..14ac511f90 100644
--- a/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po
+++ b/plugins/Awesomeness/locale/nl/LC_MESSAGES/Awesomeness.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Awesomeness\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:35+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:51+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-awesomeness\n"
diff --git a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po
index 27ca1f3c02..8c67bec526 100644
--- a/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po
+++ b/plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Awesomeness\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:35+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:51+0000\n"
"Language-Team: Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n"
"X-Message-Group: #out-statusnet-plugin-awesomeness\n"
diff --git a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po
index fca8cfb024..d19941a7ed 100644
--- a/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po
+++ b/plugins/Awesomeness/locale/ru/LC_MESSAGES/Awesomeness.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Awesomeness\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:35+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:51+0000\n"
"Language-Team: Russian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: #out-statusnet-plugin-awesomeness\n"
diff --git a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po
index 78445d44a6..80155aa797 100644
--- a/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po
+++ b/plugins/Awesomeness/locale/uk/LC_MESSAGES/Awesomeness.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Awesomeness\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:35+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:51+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-24 15:23:16+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-awesomeness\n"
diff --git a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po
index 0ca0ab9f4e..fd790a8fee 100644
--- a/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po
+++ b/plugins/BitlyUrl/locale/be-tarask/LC_MESSAGES/BitlyUrl.po
@@ -10,14 +10,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BitlyUrl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:36+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:52+0000\n"
"Language-Team: Belarusian (Taraškievica orthography) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-03 13:40:20+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:22+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: be-tarask\n"
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
diff --git a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po
index a79f6bccab..7d5d87af8e 100644
--- a/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po
+++ b/plugins/BitlyUrl/locale/ca/LC_MESSAGES/BitlyUrl.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BitlyUrl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:36+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:52+0000\n"
"Language-Team: Catalan \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-03 13:40:20+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:22+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ca\n"
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
diff --git a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po
index 6df61c6c71..afc572b283 100644
--- a/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po
+++ b/plugins/BitlyUrl/locale/de/LC_MESSAGES/BitlyUrl.po
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BitlyUrl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:36+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:52+0000\n"
"Language-Team: German \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-03 13:40:20+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:22+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n"
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
diff --git a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po
index 4a87aa613e..25be7378b8 100644
--- a/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po
+++ b/plugins/BitlyUrl/locale/fr/LC_MESSAGES/BitlyUrl.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BitlyUrl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:37+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:52+0000\n"
"Language-Team: French \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-03 13:40:20+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:22+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
diff --git a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po
index 2c4ae23c11..f669631f38 100644
--- a/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po
+++ b/plugins/BitlyUrl/locale/ia/LC_MESSAGES/BitlyUrl.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BitlyUrl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:03+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:52+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:33+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:22+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
diff --git a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po
index da1a66caa4..a45f62c524 100644
--- a/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po
+++ b/plugins/BitlyUrl/locale/mk/LC_MESSAGES/BitlyUrl.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BitlyUrl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:04+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:52+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:33+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:22+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
diff --git a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po
index da7aec81ce..c4baa4618a 100644
--- a/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po
+++ b/plugins/BitlyUrl/locale/nb/LC_MESSAGES/BitlyUrl.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BitlyUrl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:04+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:53+0000\n"
"Language-Team: Norwegian (bokmål) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:33+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:22+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: no\n"
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
diff --git a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po
index 255ac03b41..8953bf27ed 100644
--- a/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po
+++ b/plugins/BitlyUrl/locale/nl/LC_MESSAGES/BitlyUrl.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BitlyUrl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:04+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:53+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:33+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:22+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
diff --git a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po
index b0d28dfccd..7af30cfd23 100644
--- a/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po
+++ b/plugins/BitlyUrl/locale/ru/LC_MESSAGES/BitlyUrl.po
@@ -11,13 +11,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BitlyUrl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:04+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:53+0000\n"
"Language-Team: Russian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:33+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:22+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
diff --git a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po
index f2871533e9..beb152fe0e 100644
--- a/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po
+++ b/plugins/BitlyUrl/locale/tl/LC_MESSAGES/BitlyUrl.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BitlyUrl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:04+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:53+0000\n"
"Language-Team: Tagalog \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:33+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:22+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
diff --git a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po
index 1a2126b26e..5984dc99f8 100644
--- a/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po
+++ b/plugins/BitlyUrl/locale/uk/LC_MESSAGES/BitlyUrl.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BitlyUrl\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:04+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:53+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:33+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:22+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
diff --git a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po
index f3022a25e5..a2b83189a2 100644
--- a/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po
+++ b/plugins/Blacklist/locale/be-tarask/LC_MESSAGES/Blacklist.po
@@ -10,14 +10,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Blacklist\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:05+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:54+0000\n"
"Language-Team: Belarusian (Taraškievica orthography) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-10 08:46:04+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: be-tarask\n"
"X-Message-Group: #out-statusnet-plugin-blacklist\n"
diff --git a/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po
index 840da93e34..1422ff2238 100644
--- a/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po
+++ b/plugins/Blacklist/locale/ca/LC_MESSAGES/Blacklist.po
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Blacklist\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:06+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:54+0000\n"
"Language-Team: Catalan \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-10 08:46:04+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ca\n"
"X-Message-Group: #out-statusnet-plugin-blacklist\n"
diff --git a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po
index 3cb244a92c..2d1ea25092 100644
--- a/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po
+++ b/plugins/Blacklist/locale/de/LC_MESSAGES/Blacklist.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Blacklist\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:06+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:54+0000\n"
"Language-Team: German \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-10 08:46:04+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n"
"X-Message-Group: #out-statusnet-plugin-blacklist\n"
diff --git a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po
index dc9594abd8..fdda3cd11d 100644
--- a/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po
+++ b/plugins/Blacklist/locale/fr/LC_MESSAGES/Blacklist.po
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Blacklist\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:06+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:55+0000\n"
"Language-Team: French \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-10 08:46:04+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-plugin-blacklist\n"
diff --git a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po
index 9d927d8ac2..f456683200 100644
--- a/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po
+++ b/plugins/Blacklist/locale/ia/LC_MESSAGES/Blacklist.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Blacklist\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:06+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:55+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-10 08:46:04+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-blacklist\n"
diff --git a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po
index 69a698a66c..f3cecbfc7f 100644
--- a/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po
+++ b/plugins/Blacklist/locale/mk/LC_MESSAGES/Blacklist.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Blacklist\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:06+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:55+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-10 08:46:04+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-blacklist\n"
diff --git a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po
index 17ede404ba..f584df4612 100644
--- a/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po
+++ b/plugins/Blacklist/locale/nl/LC_MESSAGES/Blacklist.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Blacklist\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:06+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:55+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-10 08:46:04+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-blacklist\n"
diff --git a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po
index e940780300..6815474d54 100644
--- a/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po
+++ b/plugins/Blacklist/locale/ru/LC_MESSAGES/Blacklist.po
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Blacklist\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:06+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:55+0000\n"
"Language-Team: Russian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-10 08:46:04+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: #out-statusnet-plugin-blacklist\n"
diff --git a/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po
index bc759f0a08..3a44465aeb 100644
--- a/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po
+++ b/plugins/Blacklist/locale/tl/LC_MESSAGES/Blacklist.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Blacklist\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:06+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:55+0000\n"
"Language-Team: Tagalog \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-10 08:46:04+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-blacklist\n"
diff --git a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po
index d7b16c22e3..8b0af5b8ef 100644
--- a/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po
+++ b/plugins/Blacklist/locale/uk/LC_MESSAGES/Blacklist.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Blacklist\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-10 08:14+0000\n"
-"PO-Revision-Date: 2011-04-10 08:17:12+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:55+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:40+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85733); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-blacklist\n"
diff --git a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po
index a7665909d6..a41835c368 100644
--- a/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po
+++ b/plugins/Blacklist/locale/zh_CN/LC_MESSAGES/Blacklist.po
@@ -10,14 +10,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Blacklist\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-10 08:14+0000\n"
-"PO-Revision-Date: 2011-04-10 08:17:12+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:55+0000\n"
"Language-Team: Simplified Chinese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:40+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85733); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:42+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hans\n"
"X-Message-Group: #out-statusnet-plugin-blacklist\n"
diff --git a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po
index 57eb5e2c63..3c6141207a 100644
--- a/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po
+++ b/plugins/BlankAd/locale/be-tarask/LC_MESSAGES/BlankAd.po
@@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlankAd\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:40+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:55+0000\n"
"Language-Team: Belarusian (Taraškievica orthography) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: be-tarask\n"
"X-Message-Group: #out-statusnet-plugin-blankad\n"
diff --git a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po
index ccf27638db..90b2970994 100644
--- a/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po
+++ b/plugins/BlankAd/locale/br/LC_MESSAGES/BlankAd.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlankAd\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:40+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:55+0000\n"
"Language-Team: Breton \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: br\n"
"X-Message-Group: #out-statusnet-plugin-blankad\n"
diff --git a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po
index 10f2186ad5..28eb3b7102 100644
--- a/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po
+++ b/plugins/BlankAd/locale/de/LC_MESSAGES/BlankAd.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlankAd\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:40+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:55+0000\n"
"Language-Team: German \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n"
"X-Message-Group: #out-statusnet-plugin-blankad\n"
diff --git a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po
index af99fa7b67..dc85d2e537 100644
--- a/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po
+++ b/plugins/BlankAd/locale/es/LC_MESSAGES/BlankAd.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlankAd\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:40+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:55+0000\n"
"Language-Team: Spanish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: es\n"
"X-Message-Group: #out-statusnet-plugin-blankad\n"
diff --git a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po
index 6d81b9543d..b04e0be8e8 100644
--- a/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po
+++ b/plugins/BlankAd/locale/fi/LC_MESSAGES/BlankAd.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlankAd\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:40+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:55+0000\n"
"Language-Team: Finnish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fi\n"
"X-Message-Group: #out-statusnet-plugin-blankad\n"
diff --git a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po
index 707b834cb6..f374f41aed 100644
--- a/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po
+++ b/plugins/BlankAd/locale/fr/LC_MESSAGES/BlankAd.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlankAd\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:40+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:56+0000\n"
"Language-Team: French \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-plugin-blankad\n"
diff --git a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po
index e2ae50eed5..e08439e812 100644
--- a/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po
+++ b/plugins/BlankAd/locale/he/LC_MESSAGES/BlankAd.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlankAd\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:40+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:56+0000\n"
"Language-Team: Hebrew \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: he\n"
"X-Message-Group: #out-statusnet-plugin-blankad\n"
diff --git a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po
index d22906d5ab..d32994ee27 100644
--- a/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po
+++ b/plugins/BlankAd/locale/ia/LC_MESSAGES/BlankAd.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlankAd\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:40+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:56+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-blankad\n"
diff --git a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po
index 5658a1e295..1f30fdea51 100644
--- a/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po
+++ b/plugins/BlankAd/locale/mk/LC_MESSAGES/BlankAd.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlankAd\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:40+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:56+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-blankad\n"
diff --git a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po
index c0cfeb0b4f..028d2e02b5 100644
--- a/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po
+++ b/plugins/BlankAd/locale/nb/LC_MESSAGES/BlankAd.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlankAd\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:40+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:56+0000\n"
"Language-Team: Norwegian (bokmål) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: no\n"
"X-Message-Group: #out-statusnet-plugin-blankad\n"
diff --git a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po
index 9f9ab269ef..0f7ba600e3 100644
--- a/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po
+++ b/plugins/BlankAd/locale/nl/LC_MESSAGES/BlankAd.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlankAd\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:40+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:56+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-blankad\n"
diff --git a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po
index 2dc87e8aea..e479e1c3f3 100644
--- a/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po
+++ b/plugins/BlankAd/locale/pt/LC_MESSAGES/BlankAd.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlankAd\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:40+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:56+0000\n"
"Language-Team: Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n"
"X-Message-Group: #out-statusnet-plugin-blankad\n"
diff --git a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po
index 7aa035f362..d354a1ebd0 100644
--- a/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po
+++ b/plugins/BlankAd/locale/ru/LC_MESSAGES/BlankAd.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlankAd\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:40+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:56+0000\n"
"Language-Team: Russian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: #out-statusnet-plugin-blankad\n"
diff --git a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po
index 327042052b..486334613c 100644
--- a/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po
+++ b/plugins/BlankAd/locale/tl/LC_MESSAGES/BlankAd.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlankAd\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:40+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:56+0000\n"
"Language-Team: Tagalog \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-blankad\n"
diff --git a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po
index 2cdc1a94b8..fb0c5237b2 100644
--- a/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po
+++ b/plugins/BlankAd/locale/uk/LC_MESSAGES/BlankAd.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlankAd\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:40+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:56+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-blankad\n"
diff --git a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po
index 35f34671e2..417a203362 100644
--- a/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po
+++ b/plugins/BlankAd/locale/zh_CN/LC_MESSAGES/BlankAd.po
@@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlankAd\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:40+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:56+0000\n"
"Language-Team: Simplified Chinese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:03+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hans\n"
"X-Message-Group: #out-statusnet-plugin-blankad\n"
diff --git a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po
index 3a3bcacbae..6183dedfa0 100644
--- a/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po
+++ b/plugins/BlogspamNet/locale/ia/LC_MESSAGES/BlogspamNet.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlogspamNet\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:08+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:57+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:45+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:43+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-blogspamnet\n"
diff --git a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po
index 2eecf45959..1d25bb3734 100644
--- a/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po
+++ b/plugins/BlogspamNet/locale/mk/LC_MESSAGES/BlogspamNet.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlogspamNet\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:08+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:57+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:45+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:43+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-blogspamnet\n"
diff --git a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po
index 17ce3d91a9..190172dfc4 100644
--- a/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po
+++ b/plugins/BlogspamNet/locale/nl/LC_MESSAGES/BlogspamNet.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlogspamNet\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:08+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:57+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:45+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:43+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-blogspamnet\n"
diff --git a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po
index 88ce1d0777..7f6ae496f7 100644
--- a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po
+++ b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlogspamNet\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:08+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:57+0000\n"
"Language-Team: Russian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:45+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:43+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: #out-statusnet-plugin-blogspamnet\n"
diff --git a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po
index 0ecc8cb19e..4875e4b51d 100644
--- a/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po
+++ b/plugins/BlogspamNet/locale/tl/LC_MESSAGES/BlogspamNet.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlogspamNet\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:08+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:57+0000\n"
"Language-Team: Tagalog \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:45+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:43+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-blogspamnet\n"
diff --git a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po
index 53c9acdff1..ca0be39386 100644
--- a/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po
+++ b/plugins/BlogspamNet/locale/uk/LC_MESSAGES/BlogspamNet.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - BlogspamNet\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:08+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:20:57+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:45+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:43+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-blogspamnet\n"
diff --git a/plugins/Bookmark/BookmarkPlugin.php b/plugins/Bookmark/BookmarkPlugin.php
index 3672ab2dfc..676d44a5b9 100644
--- a/plugins/Bookmark/BookmarkPlugin.php
+++ b/plugins/Bookmark/BookmarkPlugin.php
@@ -519,7 +519,8 @@ class BookmarkPlugin extends MicroAppPlugin
if (count($atts) < 1) {
// Something wrong; let default code deal with it.
// TRANS: Exception thrown when a bookmark has no attachments.
- throw new Exception(sprintf(_m('Bookmark %s (notice %d) has no attachments.'),
+ // TRANS: %1$s is a bookmark ID, %2$s is a notice ID (number).
+ throw new Exception(sprintf(_m('Bookmark %1$s (notice %2$d) has no attachments.'),
$nb->id,
$notice->id));
}
diff --git a/plugins/Bookmark/locale/Bookmark.pot b/plugins/Bookmark/locale/Bookmark.pot
index a8d12566a9..45e7ab883e 100644
--- a/plugins/Bookmark/locale/Bookmark.pot
+++ b/plugins/Bookmark/locale/Bookmark.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -65,12 +65,13 @@ msgid "Bookmark notice with the wrong number of attachments."
msgstr ""
#. TRANS: Exception thrown when a bookmark has no attachments.
-#: BookmarkPlugin.php:522
-msgid "Bookmark has no attachments."
+#: BookmarkPlugin.php:523
+#, php-format
+msgid "Bookmark %1$s (notice %2$d) has no attachments."
msgstr ""
#. TRANS: Application title.
-#: BookmarkPlugin.php:639
+#: BookmarkPlugin.php:642
msgctxt "TITLE"
msgid "Bookmark"
msgstr ""
diff --git a/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po
index 0331158942..9a3d37c357 100644
--- a/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po
+++ b/plugins/Bookmark/locale/ca/LC_MESSAGES/Bookmark.po
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Bookmark\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:11+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:00+0000\n"
"Language-Team: Catalan \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:51+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:44+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ca\n"
"X-Message-Group: #out-statusnet-plugin-bookmark\n"
@@ -62,8 +62,8 @@ msgid "Bookmark notice with the wrong number of attachments."
msgstr "Avís d'adreça d'interès amb un nombre incorrecte d'adjuncions."
#. TRANS: Exception thrown when a bookmark has no attachments.
-#, fuzzy
-msgid "Bookmark has no attachments."
+#, fuzzy, php-format
+msgid "Bookmark %s (notice %d) has no attachments."
msgstr "Avís d'adreça d'interès amb un nombre incorrecte d'adjuncions."
#. TRANS: Application title.
diff --git a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po
index b702cfdb32..ebcdea4ab1 100644
--- a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po
+++ b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Bookmark\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:11+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:00+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:51+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:44+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-bookmark\n"
@@ -62,7 +62,8 @@ msgid "Bookmark notice with the wrong number of attachments."
msgstr "Le nota de marcapaginas ha un numero erronee de annexos."
#. TRANS: Exception thrown when a bookmark has no attachments.
-msgid "Bookmark has no attachments."
+#, fuzzy, php-format
+msgid "Bookmark %s (notice %d) has no attachments."
msgstr "Le marcapaginas non ha annexos."
#. TRANS: Application title.
diff --git a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po
index a07b40b2c0..b81ae12f3f 100644
--- a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po
+++ b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Bookmark\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:11+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:00+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:51+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:44+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-bookmark\n"
@@ -61,7 +61,8 @@ msgid "Bookmark notice with the wrong number of attachments."
msgstr "Одбележи забелешка со погрешен број на прилози."
#. TRANS: Exception thrown when a bookmark has no attachments.
-msgid "Bookmark has no attachments."
+#, fuzzy, php-format
+msgid "Bookmark %s (notice %d) has no attachments."
msgstr "Одбележувачот нема прилози."
#. TRANS: Application title.
diff --git a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po
index c5e741dc75..6f586f559c 100644
--- a/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po
+++ b/plugins/Bookmark/locale/nl/LC_MESSAGES/Bookmark.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Bookmark\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:11+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:00+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:51+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:44+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-bookmark\n"
@@ -62,7 +62,8 @@ msgid "Bookmark notice with the wrong number of attachments."
msgstr "Bladwijzermededeling met het verkeerde aantal bijlagen."
#. TRANS: Exception thrown when a bookmark has no attachments.
-msgid "Bookmark has no attachments."
+#, fuzzy, php-format
+msgid "Bookmark %s (notice %d) has no attachments."
msgstr "De bladwijzer heeft geen bijlagen."
#. TRANS: Application title.
diff --git a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po
index d22bd9628d..887ce0f1cd 100644
--- a/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po
+++ b/plugins/Bookmark/locale/tl/LC_MESSAGES/Bookmark.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Bookmark\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:12+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:00+0000\n"
"Language-Team: Tagalog \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:51+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:44+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-bookmark\n"
@@ -61,13 +61,14 @@ msgid "Bookmark notice with the wrong number of attachments."
msgstr ""
#. TRANS: Exception thrown when a bookmark has no attachments.
-msgid "Bookmark has no attachments."
+#, php-format
+msgid "Bookmark %s (notice %d) has no attachments."
msgstr ""
#. TRANS: Application title.
msgctxt "TITLE"
msgid "Bookmark"
-msgstr ""
+msgstr "Pananda"
#. TRANS: Title for mini-posting window loaded from bookmarklet.
#. TRANS: %s is the StatusNet site name.
@@ -98,7 +99,7 @@ msgstr ""
#. TRANS: Client exception thrown when an unknown URL is provided.
msgid "Unknown URL."
-msgstr ""
+msgstr "Hindi nalalamang URL."
#. TRANS: Title of notice stream of notices with a given attachment (first page).
#. TRANS: %s is the URL.
@@ -123,7 +124,7 @@ msgstr ""
#. TRANS: Client exception thrown when trying to import bookmarks and upload fails.
#. TRANS: Client exception thrown when a file upload has failed.
msgid "No uploaded file."
-msgstr ""
+msgstr "Walang naikargang talaksan."
#. TRANS: Client exception thrown when an uploaded file is too large.
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
diff --git a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po
index 35e1baad84..86de144645 100644
--- a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po
+++ b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Bookmark\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:12+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:00+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:51+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:44+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-bookmark\n"
@@ -62,7 +62,8 @@ msgid "Bookmark notice with the wrong number of attachments."
msgstr "Тіло закладки з неправильною кількістю вкладень."
#. TRANS: Exception thrown when a bookmark has no attachments.
-msgid "Bookmark has no attachments."
+#, fuzzy, php-format
+msgid "Bookmark %s (notice %d) has no attachments."
msgstr "Закладка не має вкладень."
#. TRANS: Application title.
diff --git a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po
index 87b2853604..a912059b7d 100644
--- a/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po
+++ b/plugins/CacheLog/locale/be-tarask/LC_MESSAGES/CacheLog.po
@@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CacheLog\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:45+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:01+0000\n"
"Language-Team: Belarusian (Taraškievica orthography) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: be-tarask\n"
"X-Message-Group: #out-statusnet-plugin-cachelog\n"
diff --git a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po
index d3268d3673..1079a8f35c 100644
--- a/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po
+++ b/plugins/CacheLog/locale/br/LC_MESSAGES/CacheLog.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CacheLog\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:45+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:01+0000\n"
"Language-Team: Breton \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: br\n"
"X-Message-Group: #out-statusnet-plugin-cachelog\n"
diff --git a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po
index 4f0bd5704c..a11e4f21e4 100644
--- a/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po
+++ b/plugins/CacheLog/locale/es/LC_MESSAGES/CacheLog.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CacheLog\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:45+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:01+0000\n"
"Language-Team: Spanish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: es\n"
"X-Message-Group: #out-statusnet-plugin-cachelog\n"
diff --git a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po
index 4adcc71d99..a1ebbb1e6b 100644
--- a/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po
+++ b/plugins/CacheLog/locale/fr/LC_MESSAGES/CacheLog.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CacheLog\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:45+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:01+0000\n"
"Language-Team: French \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-plugin-cachelog\n"
diff --git a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po
index 5407022b39..69e0ab2902 100644
--- a/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po
+++ b/plugins/CacheLog/locale/he/LC_MESSAGES/CacheLog.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CacheLog\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:45+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:01+0000\n"
"Language-Team: Hebrew \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: he\n"
"X-Message-Group: #out-statusnet-plugin-cachelog\n"
diff --git a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po
index 73fd6dedba..156d0b74e2 100644
--- a/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po
+++ b/plugins/CacheLog/locale/ia/LC_MESSAGES/CacheLog.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CacheLog\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:45+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:01+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-cachelog\n"
diff --git a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po
index 14f0a4660a..314a2233bb 100644
--- a/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po
+++ b/plugins/CacheLog/locale/mk/LC_MESSAGES/CacheLog.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CacheLog\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:45+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:01+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-cachelog\n"
diff --git a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po
index 125c90d03b..2fb85a734f 100644
--- a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po
+++ b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CacheLog\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:45+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:01+0000\n"
"Language-Team: Norwegian (bokmål) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: no\n"
"X-Message-Group: #out-statusnet-plugin-cachelog\n"
diff --git a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po
index fdada70075..547977cb6f 100644
--- a/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po
+++ b/plugins/CacheLog/locale/nl/LC_MESSAGES/CacheLog.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CacheLog\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:45+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:01+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-cachelog\n"
diff --git a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po
index d366b01489..a359e30d01 100644
--- a/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po
+++ b/plugins/CacheLog/locale/pt/LC_MESSAGES/CacheLog.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CacheLog\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:45+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:01+0000\n"
"Language-Team: Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n"
"X-Message-Group: #out-statusnet-plugin-cachelog\n"
diff --git a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po
index 7024b7e221..96d1565397 100644
--- a/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po
+++ b/plugins/CacheLog/locale/ru/LC_MESSAGES/CacheLog.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CacheLog\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:45+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:01+0000\n"
"Language-Team: Russian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: #out-statusnet-plugin-cachelog\n"
diff --git a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po
index 5caccfc293..9567377765 100644
--- a/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po
+++ b/plugins/CacheLog/locale/tl/LC_MESSAGES/CacheLog.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CacheLog\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:45+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:01+0000\n"
"Language-Team: Tagalog \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-cachelog\n"
diff --git a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po
index 62a8f1cc11..49a1b5389c 100644
--- a/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po
+++ b/plugins/CacheLog/locale/uk/LC_MESSAGES/CacheLog.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CacheLog\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:45+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:01+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-cachelog\n"
diff --git a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po
index 9db70a0db5..074b797962 100644
--- a/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po
+++ b/plugins/CacheLog/locale/zh_CN/LC_MESSAGES/CacheLog.po
@@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CacheLog\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:45+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:01+0000\n"
"Language-Team: Simplified Chinese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hans\n"
"X-Message-Group: #out-statusnet-plugin-cachelog\n"
diff --git a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po
index 64403058f1..f8641539c0 100644
--- a/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po
+++ b/plugins/CasAuthentication/locale/be-tarask/LC_MESSAGES/CasAuthentication.po
@@ -10,14 +10,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CasAuthentication\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:46+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:02+0000\n"
"Language-Team: Belarusian (Taraškievica orthography) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:44+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: be-tarask\n"
"X-Message-Group: #out-statusnet-plugin-casauthentication\n"
diff --git a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po
index db26e45ffa..9eea59d143 100644
--- a/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po
+++ b/plugins/CasAuthentication/locale/br/LC_MESSAGES/CasAuthentication.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CasAuthentication\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:46+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:02+0000\n"
"Language-Team: Breton \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:44+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: br\n"
"X-Message-Group: #out-statusnet-plugin-casauthentication\n"
diff --git a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po
index a724e2c466..5bf77a61b1 100644
--- a/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po
+++ b/plugins/CasAuthentication/locale/de/LC_MESSAGES/CasAuthentication.po
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CasAuthentication\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:46+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:02+0000\n"
"Language-Team: German \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:44+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n"
"X-Message-Group: #out-statusnet-plugin-casauthentication\n"
diff --git a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po
index 7a0b82764b..a9bdd89f8f 100644
--- a/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po
+++ b/plugins/CasAuthentication/locale/es/LC_MESSAGES/CasAuthentication.po
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CasAuthentication\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:46+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:02+0000\n"
"Language-Team: Spanish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:44+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: es\n"
"X-Message-Group: #out-statusnet-plugin-casauthentication\n"
diff --git a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po
index 73836e3d97..3c6c466f77 100644
--- a/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po
+++ b/plugins/CasAuthentication/locale/fr/LC_MESSAGES/CasAuthentication.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CasAuthentication\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:46+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:03+0000\n"
"Language-Team: French \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:44+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-plugin-casauthentication\n"
diff --git a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po
index 7697f1550e..ae4fc788f9 100644
--- a/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po
+++ b/plugins/CasAuthentication/locale/ia/LC_MESSAGES/CasAuthentication.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CasAuthentication\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:46+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:03+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:44+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-casauthentication\n"
diff --git a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po
index 676499fffe..c8a53e87a2 100644
--- a/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po
+++ b/plugins/CasAuthentication/locale/mk/LC_MESSAGES/CasAuthentication.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CasAuthentication\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:47+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:03+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:44+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-casauthentication\n"
diff --git a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po
index f3c8f8c09a..841b28097a 100644
--- a/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po
+++ b/plugins/CasAuthentication/locale/nl/LC_MESSAGES/CasAuthentication.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CasAuthentication\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:47+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:03+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:44+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-casauthentication\n"
diff --git a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po
index 43715470e5..ae7cae6497 100644
--- a/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po
+++ b/plugins/CasAuthentication/locale/pt_BR/LC_MESSAGES/CasAuthentication.po
@@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CasAuthentication\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:47+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:03+0000\n"
"Language-Team: Brazilian Portuguese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:44+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt-br\n"
"X-Message-Group: #out-statusnet-plugin-casauthentication\n"
diff --git a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po
index 5edb87b622..129fd3f9f6 100644
--- a/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po
+++ b/plugins/CasAuthentication/locale/ru/LC_MESSAGES/CasAuthentication.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CasAuthentication\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:47+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:03+0000\n"
"Language-Team: Russian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:44+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: #out-statusnet-plugin-casauthentication\n"
diff --git a/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po
index b8ab09b9d4..3333e5274e 100644
--- a/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po
+++ b/plugins/CasAuthentication/locale/tl/LC_MESSAGES/CasAuthentication.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CasAuthentication\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:14+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:03+0000\n"
"Language-Team: Tagalog \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:44+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-casauthentication\n"
diff --git a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po
index 8c47e156fb..002adc6168 100644
--- a/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po
+++ b/plugins/CasAuthentication/locale/uk/LC_MESSAGES/CasAuthentication.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CasAuthentication\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:47+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:03+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:44+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-casauthentication\n"
diff --git a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po
index 440344e59f..bab7dbeb24 100644
--- a/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po
+++ b/plugins/CasAuthentication/locale/zh_CN/LC_MESSAGES/CasAuthentication.po
@@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - CasAuthentication\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:47+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:03+0000\n"
"Language-Team: Simplified Chinese \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:44+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hans\n"
"X-Message-Group: #out-statusnet-plugin-casauthentication\n"
diff --git a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po
index a05840628b..e24e329388 100644
--- a/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po
+++ b/plugins/ClientSideShorten/locale/be-tarask/LC_MESSAGES/ClientSideShorten.po
@@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - ClientSideShorten\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:47+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:03+0000\n"
"Language-Team: Belarusian (Taraškievica orthography) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:45+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: be-tarask\n"
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
diff --git a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po
index b4c7e39e11..7546c4c5d8 100644
--- a/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po
+++ b/plugins/ClientSideShorten/locale/de/LC_MESSAGES/ClientSideShorten.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - ClientSideShorten\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:47+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:03+0000\n"
"Language-Team: German \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:45+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n"
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
diff --git a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po
index 9a9c4b7b9a..8431755eec 100644
--- a/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po
+++ b/plugins/ClientSideShorten/locale/es/LC_MESSAGES/ClientSideShorten.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - ClientSideShorten\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:47+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:03+0000\n"
"Language-Team: Spanish \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:45+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: es\n"
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
diff --git a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po
index be35b0428a..4664cd3881 100644
--- a/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po
+++ b/plugins/ClientSideShorten/locale/fr/LC_MESSAGES/ClientSideShorten.po
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - ClientSideShorten\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:47+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:03+0000\n"
"Language-Team: French \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:45+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
diff --git a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po
index 6a4ea7c057..1741c826fa 100644
--- a/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po
+++ b/plugins/ClientSideShorten/locale/he/LC_MESSAGES/ClientSideShorten.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - ClientSideShorten\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-09 18:34+0000\n"
-"PO-Revision-Date: 2011-04-09 18:36:47+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:03+0000\n"
"Language-Team: Hebrew \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-03-18 20:06:06+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85732); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:45+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: he\n"
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
diff --git a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po
index 92020c4945..1004f9ab65 100644
--- a/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po
+++ b/plugins/ClientSideShorten/locale/ia/LC_MESSAGES/ClientSideShorten.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - ClientSideShorten\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:15+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:04+0000\n"
"Language-Team: Interlingua \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:56+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:45+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
diff --git a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po
index fa1d939720..c93fcbcc18 100644
--- a/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po
+++ b/plugins/ClientSideShorten/locale/id/LC_MESSAGES/ClientSideShorten.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - ClientSideShorten\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:15+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:04+0000\n"
"Language-Team: Indonesian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:56+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:45+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: id\n"
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
diff --git a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po
index 97763096cf..d49dfae59e 100644
--- a/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po
+++ b/plugins/ClientSideShorten/locale/mk/LC_MESSAGES/ClientSideShorten.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - ClientSideShorten\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:15+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:04+0000\n"
"Language-Team: Macedonian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:56+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:45+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
diff --git a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po
index 601b975142..4e9419a9d6 100644
--- a/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po
+++ b/plugins/ClientSideShorten/locale/nb/LC_MESSAGES/ClientSideShorten.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - ClientSideShorten\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:15+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:04+0000\n"
"Language-Team: Norwegian (bokmål) \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:56+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:45+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: no\n"
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
diff --git a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po
index d2bb623f2f..29781c2fa3 100644
--- a/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po
+++ b/plugins/ClientSideShorten/locale/nl/LC_MESSAGES/ClientSideShorten.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - ClientSideShorten\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:15+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:04+0000\n"
"Language-Team: Dutch \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:56+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:45+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
diff --git a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po
index a31b5213c3..f957a0e834 100644
--- a/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po
+++ b/plugins/ClientSideShorten/locale/ru/LC_MESSAGES/ClientSideShorten.po
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - ClientSideShorten\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:15+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:04+0000\n"
"Language-Team: Russian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:56+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:45+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
diff --git a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po
index 3af20cefb6..c54b3b8a5a 100644
--- a/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po
+++ b/plugins/ClientSideShorten/locale/tl/LC_MESSAGES/ClientSideShorten.po
@@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - ClientSideShorten\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:15+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:04+0000\n"
"Language-Team: Tagalog \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:56+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:45+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
diff --git a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po
index bb59421034..3d2a0e8358 100644
--- a/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po
+++ b/plugins/ClientSideShorten/locale/uk/LC_MESSAGES/ClientSideShorten.po
@@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - ClientSideShorten\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:16+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:04+0000\n"
"Language-Team: Ukrainian \n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-POT-Import-Date: 2011-04-09 18:57:56+0000\n"
-"X-Generator: MediaWiki 1.18alpha (r85780); Translate extension (2011-03-11)\n"
+"X-POT-Import-Date: 2011-04-11 13:14:45+0000\n"
+"X-Generator: MediaWiki 1.18alpha (r85942); Translate extension (2011-03-11)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
diff --git a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po
index b8db2d58d9..ee0d513fda 100644
--- a/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po
+++ b/plugins/ClientSideShorten/locale/zh_CN/LC_MESSAGES/ClientSideShorten.po
@@ -10,14 +10,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - ClientSideShorten\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-11 12:22+0000\n"
-"PO-Revision-Date: 2011-04-11 12:26:16+0000\n"
+"POT-Creation-Date: 2011-04-13 13:18+0000\n"
+"PO-Revision-Date: 2011-04-13 13:21:04+0000\n"
"Language-Team: Simplified Chinese