Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.x
This commit is contained in:
commit
8dbbee92e9
313
js/util.js
313
js/util.js
@ -50,12 +50,7 @@ var SN = { // StatusNet
|
|||||||
Processing: 'processing',
|
Processing: 'processing',
|
||||||
CommandResult: 'command_result',
|
CommandResult: 'command_result',
|
||||||
FormNotice: 'form_notice',
|
FormNotice: 'form_notice',
|
||||||
NoticeDataText: 'notice_data-text',
|
|
||||||
NoticeTextCount: 'notice_text-count',
|
|
||||||
NoticeInReplyTo: 'notice_in-reply-to',
|
NoticeInReplyTo: 'notice_in-reply-to',
|
||||||
NoticeDataAttach: 'notice_data-attach',
|
|
||||||
NoticeDataAttachSelected: 'notice_data-attach_selected',
|
|
||||||
NoticeActionSubmit: 'notice_action-submit',
|
|
||||||
NoticeLat: 'notice_data-lat',
|
NoticeLat: 'notice_data-lat',
|
||||||
NoticeLon: 'notice_data-lon',
|
NoticeLon: 'notice_data-lon',
|
||||||
NoticeLocationId: 'notice_data-location_id',
|
NoticeLocationId: 'notice_data-location_id',
|
||||||
@ -106,7 +101,7 @@ var SN = { // StatusNet
|
|||||||
*/
|
*/
|
||||||
FormNoticeEnhancements: function(form) {
|
FormNoticeEnhancements: function(form) {
|
||||||
if (jQuery.data(form[0], 'ElementData') === undefined) {
|
if (jQuery.data(form[0], 'ElementData') === undefined) {
|
||||||
MaxLength = form.find('#'+SN.C.S.NoticeTextCount).text();
|
MaxLength = form.find('.count').text();
|
||||||
if (typeof(MaxLength) == 'undefined') {
|
if (typeof(MaxLength) == 'undefined') {
|
||||||
MaxLength = SN.C.I.MaxLength;
|
MaxLength = SN.C.I.MaxLength;
|
||||||
}
|
}
|
||||||
@ -114,7 +109,7 @@ var SN = { // StatusNet
|
|||||||
|
|
||||||
SN.U.Counter(form);
|
SN.U.Counter(form);
|
||||||
|
|
||||||
NDT = form.find('#'+SN.C.S.NoticeDataText);
|
NDT = form.find('[name=status_textarea]');
|
||||||
|
|
||||||
NDT.bind('keyup', function(e) {
|
NDT.bind('keyup', function(e) {
|
||||||
SN.U.Counter(form);
|
SN.U.Counter(form);
|
||||||
@ -132,41 +127,10 @@ var SN = { // StatusNet
|
|||||||
// Note there's still no event for mouse-triggered 'delete'.
|
// Note there's still no event for mouse-triggered 'delete'.
|
||||||
NDT.bind('cut', delayedUpdate)
|
NDT.bind('cut', delayedUpdate)
|
||||||
.bind('paste', delayedUpdate);
|
.bind('paste', delayedUpdate);
|
||||||
|
|
||||||
NDT.bind('keydown', function(e) {
|
|
||||||
SN.U.SubmitOnReturn(e, form);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
form.find('#'+SN.C.S.NoticeTextCount).text(jQuery.data(form[0], 'ElementData').MaxLength);
|
form.find('.count').text(jQuery.data(form[0], 'ElementData').MaxLength);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($('body')[0].id != 'conversation' && window.location.hash.length === 0 && $(window).scrollTop() == 0) {
|
|
||||||
form.find('textarea').focus();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* To be called from keydown event handler on the notice import form.
|
|
||||||
* Checks if return or enter key was pressed, and if so attempts to
|
|
||||||
* submit the form and cancel standard processing of the enter key.
|
|
||||||
*
|
|
||||||
* @param {Event} event
|
|
||||||
* @param {jQuery} el: jQuery object whose first element is the notice posting form
|
|
||||||
*
|
|
||||||
* @return {boolean} whether to cancel the event? Does this actually pass through?
|
|
||||||
* @access private
|
|
||||||
*/
|
|
||||||
SubmitOnReturn: function(event, el) {
|
|
||||||
if (event.keyCode == 13 || event.keyCode == 10) {
|
|
||||||
el.submit();
|
|
||||||
event.preventDefault();
|
|
||||||
event.stopPropagation();
|
|
||||||
$('#'+el[0].id+' #'+SN.C.S.NoticeDataText).blur();
|
|
||||||
$('body').focus();
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -193,7 +157,7 @@ var SN = { // StatusNet
|
|||||||
}
|
}
|
||||||
|
|
||||||
var remaining = MaxLength - SN.U.CharacterCount(form);
|
var remaining = MaxLength - SN.U.CharacterCount(form);
|
||||||
var counter = form.find('#'+SN.C.S.NoticeTextCount);
|
var counter = form.find('.count');
|
||||||
|
|
||||||
if (remaining.toString() != counter.text()) {
|
if (remaining.toString() != counter.text()) {
|
||||||
if (!SN.C.I.CounterBlackout || remaining === 0) {
|
if (!SN.C.I.CounterBlackout || remaining === 0) {
|
||||||
@ -224,7 +188,7 @@ var SN = { // StatusNet
|
|||||||
* @return number of chars
|
* @return number of chars
|
||||||
*/
|
*/
|
||||||
CharacterCount: function(form) {
|
CharacterCount: function(form) {
|
||||||
return form.find('#'+SN.C.S.NoticeDataText).val().length;
|
return form.find('[name=status_textarea]').val().length;
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -365,46 +329,24 @@ var SN = { // StatusNet
|
|||||||
dataType: 'xml',
|
dataType: 'xml',
|
||||||
timeout: '60000',
|
timeout: '60000',
|
||||||
beforeSend: function(formData) {
|
beforeSend: function(formData) {
|
||||||
if (form.find('#'+SN.C.S.NoticeDataText)[0].value.length === 0) {
|
if (form.find('[name=status_textarea]').val() == '') {
|
||||||
form.addClass(SN.C.S.Warning);
|
form.addClass(SN.C.S.Warning);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
form
|
form
|
||||||
.addClass(SN.C.S.Processing)
|
.addClass(SN.C.S.Processing)
|
||||||
.find('#'+SN.C.S.NoticeActionSubmit)
|
.find('.submit')
|
||||||
.addClass(SN.C.S.Disabled)
|
.addClass(SN.C.S.Disabled)
|
||||||
.attr(SN.C.S.Disabled, SN.C.S.Disabled);
|
.attr(SN.C.S.Disabled, SN.C.S.Disabled);
|
||||||
|
|
||||||
SN.C.I.NoticeDataGeo.NLat = $('#'+SN.C.S.NoticeLat).val();
|
SN.U.normalizeGeoData(form);
|
||||||
SN.C.I.NoticeDataGeo.NLon = $('#'+SN.C.S.NoticeLon).val();
|
|
||||||
SN.C.I.NoticeDataGeo.NLNS = $('#'+SN.C.S.NoticeLocationNs).val();
|
|
||||||
SN.C.I.NoticeDataGeo.NLID = $('#'+SN.C.S.NoticeLocationId).val();
|
|
||||||
SN.C.I.NoticeDataGeo.NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked');
|
|
||||||
|
|
||||||
cookieValue = $.cookie(SN.C.S.NoticeDataGeoCookie);
|
|
||||||
|
|
||||||
if (cookieValue !== null && cookieValue != 'disabled') {
|
|
||||||
cookieValue = JSON.parse(cookieValue);
|
|
||||||
SN.C.I.NoticeDataGeo.NLat = $('#'+SN.C.S.NoticeLat).val(cookieValue.NLat).val();
|
|
||||||
SN.C.I.NoticeDataGeo.NLon = $('#'+SN.C.S.NoticeLon).val(cookieValue.NLon).val();
|
|
||||||
if ($('#'+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS)) {
|
|
||||||
SN.C.I.NoticeDataGeo.NLNS = $('#'+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS).val();
|
|
||||||
SN.C.I.NoticeDataGeo.NLID = $('#'+SN.C.S.NoticeLocationId).val(cookieValue.NLID).val();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (cookieValue == 'disabled') {
|
|
||||||
SN.C.I.NoticeDataGeo.NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked', false).attr('checked');
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
SN.C.I.NoticeDataGeo.NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked', true).attr('checked');
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
},
|
},
|
||||||
error: function (xhr, textStatus, errorThrown) {
|
error: function (xhr, textStatus, errorThrown) {
|
||||||
form
|
form
|
||||||
.removeClass(SN.C.S.Processing)
|
.removeClass(SN.C.S.Processing)
|
||||||
.find('#'+SN.C.S.NoticeActionSubmit)
|
.find('.submit')
|
||||||
.removeClass(SN.C.S.Disabled)
|
.removeClass(SN.C.S.Disabled)
|
||||||
.removeAttr(SN.C.S.Disabled, SN.C.S.Disabled);
|
.removeAttr(SN.C.S.Disabled, SN.C.S.Disabled);
|
||||||
removeFeedback();
|
removeFeedback();
|
||||||
@ -421,7 +363,7 @@ var SN = { // StatusNet
|
|||||||
if (parseInt(xhr.status) === 0 || jQuery.inArray(parseInt(xhr.status), SN.C.I.HTTP20x30x) >= 0) {
|
if (parseInt(xhr.status) === 0 || jQuery.inArray(parseInt(xhr.status), SN.C.I.HTTP20x30x) >= 0) {
|
||||||
form
|
form
|
||||||
.resetForm()
|
.resetForm()
|
||||||
.find('#'+SN.C.S.NoticeDataAttachSelected).remove();
|
.find('.attach-status').remove();
|
||||||
SN.U.FormNoticeEnhancements(form);
|
SN.U.FormNoticeEnhancements(form);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -478,29 +420,56 @@ var SN = { // StatusNet
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
form.resetForm();
|
form.resetForm();
|
||||||
form.find('#'+SN.C.S.NoticeInReplyTo).val('');
|
form.find('[name=inreplyto]').val('');
|
||||||
form.find('#'+SN.C.S.NoticeDataAttachSelected).remove();
|
form.find('.attach-status').remove();
|
||||||
SN.U.FormNoticeEnhancements(form);
|
SN.U.FormNoticeEnhancements(form);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
complete: function(xhr, textStatus) {
|
complete: function(xhr, textStatus) {
|
||||||
form
|
form
|
||||||
.removeClass(SN.C.S.Processing)
|
.removeClass(SN.C.S.Processing)
|
||||||
.find('#'+SN.C.S.NoticeActionSubmit)
|
.find('.submit')
|
||||||
.removeAttr(SN.C.S.Disabled)
|
.removeAttr(SN.C.S.Disabled)
|
||||||
.removeClass(SN.C.S.Disabled);
|
.removeClass(SN.C.S.Disabled);
|
||||||
|
|
||||||
$('#'+SN.C.S.NoticeLat).val(SN.C.I.NoticeDataGeo.NLat);
|
form.find('[name=lat]').val(SN.C.I.NoticeDataGeo.NLat);
|
||||||
$('#'+SN.C.S.NoticeLon).val(SN.C.I.NoticeDataGeo.NLon);
|
form.find('[name=lon]').val(SN.C.I.NoticeDataGeo.NLon);
|
||||||
if ($('#'+SN.C.S.NoticeLocationNs)) {
|
form.find('[name=location_ns]').val(SN.C.I.NoticeDataGeo.NLNS);
|
||||||
$('#'+SN.C.S.NoticeLocationNs).val(SN.C.I.NoticeDataGeo.NLNS);
|
form.find('[name=location_id]').val(SN.C.I.NoticeDataGeo.NLID);
|
||||||
$('#'+SN.C.S.NoticeLocationId).val(SN.C.I.NoticeDataGeo.NLID);
|
form.find('[name=notice_data-geo]').attr('checked', SN.C.I.NoticeDataGeo.NDG);
|
||||||
}
|
|
||||||
$('#'+SN.C.S.NoticeDataGeo).attr('checked', SN.C.I.NoticeDataGeo.NDG);
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
normalizeGeoData: function(form) {
|
||||||
|
SN.C.I.NoticeDataGeo.NLat = form.find('[name=lat]').val();
|
||||||
|
SN.C.I.NoticeDataGeo.NLon = form.find('[name=lon]').val();
|
||||||
|
SN.C.I.NoticeDataGeo.NLNS = form.find('[name=location_ns]').val();
|
||||||
|
SN.C.I.NoticeDataGeo.NLID = form.find('[name=location_id]').val();
|
||||||
|
SN.C.I.NoticeDataGeo.NDG = form.find('[name=notice_data-geo]').attr('checked'); // @fixme
|
||||||
|
|
||||||
|
var cookieValue = $.cookie(SN.C.S.NoticeDataGeoCookie);
|
||||||
|
|
||||||
|
if (cookieValue !== null && cookieValue != 'disabled') {
|
||||||
|
cookieValue = JSON.parse(cookieValue);
|
||||||
|
SN.C.I.NoticeDataGeo.NLat = form.find('[name=lat]').val(cookieValue.NLat).val();
|
||||||
|
SN.C.I.NoticeDataGeo.NLon = form.find('[name=lon]').val(cookieValue.NLon).val();
|
||||||
|
if (cookieValue.NLNS) {
|
||||||
|
SN.C.I.NoticeDataGeo.NLNS = form.find('[name=location_ns]').val(cookieValue.NLNS).val();
|
||||||
|
SN.C.I.NoticeDataGeo.NLID = form.find('[name=location_id]').val(cookieValue.NLID).val();
|
||||||
|
} else {
|
||||||
|
form.find('[name=location_ns]').val('');
|
||||||
|
form.find('[name=location_id]').val('');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (cookieValue == 'disabled') {
|
||||||
|
SN.C.I.NoticeDataGeo.NDG = form.find('[name=notice_data-geo]').attr('checked', false).attr('checked');
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
SN.C.I.NoticeDataGeo.NDG = form.find('[name=notice_data-geo]').attr('checked', true).attr('checked');
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
/**
|
/**
|
||||||
* Fetch an XML DOM from an XHR's response data.
|
* Fetch an XML DOM from an XHR's response data.
|
||||||
*
|
*
|
||||||
@ -533,7 +502,7 @@ var SN = { // StatusNet
|
|||||||
* @access private
|
* @access private
|
||||||
*/
|
*/
|
||||||
NoticeReply: function() {
|
NoticeReply: function() {
|
||||||
if ($('#'+SN.C.S.NoticeDataText).length > 0 && $('#content .notice_reply').length > 0) {
|
if ($('#content .notice_reply').length > 0) {
|
||||||
$('#content .notice').each(function() { SN.U.NoticeReplyTo($(this)); });
|
$('#content .notice').each(function() { SN.U.NoticeReplyTo($(this)); });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -556,7 +525,6 @@ var SN = { // StatusNet
|
|||||||
notice.find('.notice_reply').live('click', function(e) {
|
notice.find('.notice_reply').live('click', function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
var nickname = ($('.author .nickname', notice).length > 0) ? $($('.author .nickname', notice)[0]) : $('.author .nickname.uid');
|
var nickname = ($('.author .nickname', notice).length > 0) ? $($('.author .nickname', notice)[0]) : $('.author .nickname.uid');
|
||||||
/* SN.U.NoticeReplySet(nickname.text(), $($('.notice_id', notice)[0]).text()); */
|
|
||||||
SN.U.NoticeInlineReplyTrigger(notice, '@' + nickname.text());
|
SN.U.NoticeInlineReplyTrigger(notice, '@' + nickname.text());
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
@ -692,34 +660,6 @@ var SN = { // StatusNet
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
|
||||||
* FIXME OBSOLETE?
|
|
||||||
* Updates the new notice posting form with bits for replying to the
|
|
||||||
* given user. Adds replyto parameter to the form, and a "@foo" to the
|
|
||||||
* text area.
|
|
||||||
*
|
|
||||||
* @fixme replyto is a global variable, but probably shouldn't be
|
|
||||||
*
|
|
||||||
* @param {String} nick
|
|
||||||
* @param {String} id
|
|
||||||
*/
|
|
||||||
NoticeReplySet: function(nick,id) {
|
|
||||||
if (nick.match(SN.C.I.PatternUsername)) {
|
|
||||||
var text = $('#'+SN.C.S.NoticeDataText);
|
|
||||||
if (text.length > 0) {
|
|
||||||
replyto = '@' + nick + ' ';
|
|
||||||
text.val(replyto + text.val().replace(RegExp(replyto, 'i'), ''));
|
|
||||||
$('#'+SN.C.S.FormNotice+' #'+SN.C.S.NoticeInReplyTo).val(id);
|
|
||||||
|
|
||||||
text[0].focus();
|
|
||||||
if (text[0].setSelectionRange) {
|
|
||||||
var len = text.val().length;
|
|
||||||
text[0].setSelectionRange(len,len);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Setup function -- DOES NOT apply immediately.
|
* Setup function -- DOES NOT apply immediately.
|
||||||
*
|
*
|
||||||
@ -739,7 +679,7 @@ var SN = { // StatusNet
|
|||||||
placeholder.click(function() {
|
placeholder.click(function() {
|
||||||
SN.U.NoticeInlineReplyTrigger(notice);
|
SN.U.NoticeInlineReplyTrigger(notice);
|
||||||
});
|
});
|
||||||
placeholder.find('input').val(SN.msg('reply_comment'));
|
placeholder.find('input').val(SN.msg('reply_placeholder'));
|
||||||
list.append(placeholder);
|
list.append(placeholder);
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -874,36 +814,34 @@ var SN = { // StatusNet
|
|||||||
*
|
*
|
||||||
* This preview box will also allow removing the attachment
|
* This preview box will also allow removing the attachment
|
||||||
* prior to posting.
|
* prior to posting.
|
||||||
|
*
|
||||||
|
* @param {jQuery} form
|
||||||
*/
|
*/
|
||||||
NoticeDataAttach: function() {
|
NoticeDataAttach: function(form) {
|
||||||
NDA = $('#'+SN.C.S.NoticeDataAttach);
|
var NDA = form.find('input[type=file]');
|
||||||
NDA.change(function(event) {
|
NDA.change(function(event) {
|
||||||
|
form.find('.attach-status').remove();
|
||||||
|
|
||||||
var filename = $(this).val();
|
var filename = $(this).val();
|
||||||
if (!filename) {
|
if (!filename) {
|
||||||
// No file -- we've been tricked!
|
// No file -- we've been tricked!
|
||||||
$('#'+SN.C.S.NoticeDataAttachSelected).remove();
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// @fixme appending filename straight in is potentially unsafe
|
var attachStatus = $('<div class="attach-status '+SN.C.S.Success+'"><code></code> <button class="close">×</button></div>');
|
||||||
S = '<div id="'+SN.C.S.NoticeDataAttachSelected+'" class="'+SN.C.S.Success+'"><code>'+filename+'</code> <button class="close">×</button></div>';
|
attachStatus.find('code').text(filename);
|
||||||
NDAS = $('#'+SN.C.S.NoticeDataAttachSelected);
|
attachStatus.find('button').click(function(){
|
||||||
if (NDAS.length > 0) {
|
attachStatus.remove();
|
||||||
NDAS.replaceWith(S);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$('#'+SN.C.S.FormNotice).append(S);
|
|
||||||
}
|
|
||||||
$('#'+SN.C.S.NoticeDataAttachSelected+' button').click(function(){
|
|
||||||
$('#'+SN.C.S.NoticeDataAttachSelected).remove();
|
|
||||||
NDA.val('');
|
NDA.val('');
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
form.append(attachStatus);
|
||||||
|
|
||||||
if (typeof this.files == "object") {
|
if (typeof this.files == "object") {
|
||||||
// Some newer browsers will let us fetch the files for preview.
|
// Some newer browsers will let us fetch the files for preview.
|
||||||
for (var i = 0; i < this.files.length; i++) {
|
for (var i = 0; i < this.files.length; i++) {
|
||||||
SN.U.PreviewAttach(this.files[i]);
|
SN.U.PreviewAttach(form, this.files[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -939,13 +877,14 @@ var SN = { // StatusNet
|
|||||||
* Known fail:
|
* Known fail:
|
||||||
* - Opera 10.63, 11 beta (no input.files interface)
|
* - Opera 10.63, 11 beta (no input.files interface)
|
||||||
*
|
*
|
||||||
|
* @param {jQuery} form
|
||||||
* @param {File} file
|
* @param {File} file
|
||||||
*
|
*
|
||||||
* @todo use configured thumbnail size
|
* @todo use configured thumbnail size
|
||||||
* @todo detect pixel size?
|
* @todo detect pixel size?
|
||||||
* @todo should we render a thumbnail to a canvas and then use the smaller image?
|
* @todo should we render a thumbnail to a canvas and then use the smaller image?
|
||||||
*/
|
*/
|
||||||
PreviewAttach: function(file) {
|
PreviewAttach: function(form, file) {
|
||||||
var tooltip = file.type + ' ' + Math.round(file.size / 1024) + 'KB';
|
var tooltip = file.type + ' ' + Math.round(file.size / 1024) + 'KB';
|
||||||
var preview = true;
|
var preview = true;
|
||||||
|
|
||||||
@ -1005,11 +944,11 @@ var SN = { // StatusNet
|
|||||||
.attr('alt', tooltip)
|
.attr('alt', tooltip)
|
||||||
.attr('src', url)
|
.attr('src', url)
|
||||||
.attr('style', 'height: 120px');
|
.attr('style', 'height: 120px');
|
||||||
$('#'+SN.C.S.NoticeDataAttachSelected).append(img);
|
form.find('.attach-status').append(img);
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
var img = $('<div></div>').text(tooltip);
|
var img = $('<div></div>').text(tooltip);
|
||||||
$('#'+SN.C.S.NoticeDataAttachSelected).append(img);
|
form.find('.attach-status').append(img);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -1020,44 +959,55 @@ var SN = { // StatusNet
|
|||||||
* new-notice form. Seems to set up some event handlers for
|
* new-notice form. Seems to set up some event handlers for
|
||||||
* triggering lookups and using the new values.
|
* triggering lookups and using the new values.
|
||||||
*
|
*
|
||||||
|
* @param {jQuery} form
|
||||||
|
*
|
||||||
* @fixme tl;dr
|
* @fixme tl;dr
|
||||||
* @fixme there's not good visual state update here, so users have a
|
* @fixme there's not good visual state update here, so users have a
|
||||||
* hard time figuring out if it's working or fixing if it's wrong.
|
* hard time figuring out if it's working or fixing if it's wrong.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
NoticeLocationAttach: function() {
|
NoticeLocationAttach: function(form) {
|
||||||
var NLat = $('#'+SN.C.S.NoticeLat).val();
|
// @fixme this should not be tied to the main notice form, as there may be multiple notice forms...
|
||||||
var NLon = $('#'+SN.C.S.NoticeLon).val();
|
var NLat = form.find('[name=lat]')
|
||||||
var NLNS = $('#'+SN.C.S.NoticeLocationNs).val();
|
var NLon = form.find('[name=lon]')
|
||||||
var NLID = $('#'+SN.C.S.NoticeLocationId).val();
|
var NLNS = form.find('[name=location_ns]').val();
|
||||||
var NLN = $('#'+SN.C.S.NoticeGeoName).text();
|
var NLID = form.find('[name=location_id]').val();
|
||||||
var NDGe = $('#'+SN.C.S.NoticeDataGeo);
|
var NLN = $('#'+SN.C.S.NoticeGeoName).text(); // @fixme does this exist?
|
||||||
|
var NDGe = form.find('[name=notice_data-geo]');
|
||||||
|
|
||||||
function removeNoticeDataGeo() {
|
function removeNoticeDataGeo(error) {
|
||||||
$('label[for='+SN.C.S.NoticeDataGeo+']')
|
$('label[for='+SN.C.S.NoticeDataGeo+']')
|
||||||
.attr('title', jQuery.trim($('label[for='+SN.C.S.NoticeDataGeo+']').text()))
|
.attr('title', jQuery.trim($('label[for='+SN.C.S.NoticeDataGeo+']').text()))
|
||||||
.removeClass('checked');
|
.removeClass('checked');
|
||||||
|
|
||||||
$('#'+SN.C.S.NoticeLat).val('');
|
form.find('[name=lat]').val('');
|
||||||
$('#'+SN.C.S.NoticeLon).val('');
|
form.find('[name=lon]').val('');
|
||||||
$('#'+SN.C.S.NoticeLocationNs).val('');
|
form.find('[name=location_ns]').val('');
|
||||||
$('#'+SN.C.S.NoticeLocationId).val('');
|
form.find('[name=location_id]').val('');
|
||||||
$('#'+SN.C.S.NoticeDataGeo).attr('checked', false);
|
form.find('[name=notice_data-geo]').attr('checked', false);
|
||||||
|
|
||||||
$.cookie(SN.C.S.NoticeDataGeoCookie, 'disabled', { path: '/' });
|
$.cookie(SN.C.S.NoticeDataGeoCookie, 'disabled', { path: '/' });
|
||||||
|
|
||||||
|
if (error) {
|
||||||
|
$('.geo_status_wrapper').removeClass('success').addClass('error');
|
||||||
|
$('.geo_status_wrapper .geo_status').text(error);
|
||||||
|
} else {
|
||||||
|
$('.geo_status_wrapper').remove();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getJSONgeocodeURL(geocodeURL, data) {
|
function getJSONgeocodeURL(geocodeURL, data) {
|
||||||
|
SN.U.NoticeGeoStatus('Looking up place name...');
|
||||||
$.getJSON(geocodeURL, data, function(location) {
|
$.getJSON(geocodeURL, data, function(location) {
|
||||||
var lns, lid;
|
var lns, lid;
|
||||||
|
|
||||||
if (typeof(location.location_ns) != 'undefined') {
|
if (typeof(location.location_ns) != 'undefined') {
|
||||||
$('#'+SN.C.S.NoticeLocationNs).val(location.location_ns);
|
form.find('[name=location_ns]').val(location.location_ns);
|
||||||
lns = location.location_ns;
|
lns = location.location_ns;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (typeof(location.location_id) != 'undefined') {
|
if (typeof(location.location_id) != 'undefined') {
|
||||||
$('#'+SN.C.S.NoticeLocationId).val(location.location_id);
|
form.find('[name=location_id]').val(location.location_id);
|
||||||
lid = location.location_id;
|
lid = location.location_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1068,14 +1018,15 @@ var SN = { // StatusNet
|
|||||||
NLN_text = location.name;
|
NLN_text = location.name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SN.U.NoticeGeoStatus(NLN_text, data.lat, data.lon, location.url);
|
||||||
$('label[for='+SN.C.S.NoticeDataGeo+']')
|
$('label[for='+SN.C.S.NoticeDataGeo+']')
|
||||||
.attr('title', NoticeDataGeo_text.ShareDisable + ' (' + NLN_text + ')');
|
.attr('title', NoticeDataGeo_text.ShareDisable + ' (' + NLN_text + ')');
|
||||||
|
|
||||||
$('#'+SN.C.S.NoticeLat).val(data.lat);
|
form.find('[name=lat]').val(data.lat);
|
||||||
$('#'+SN.C.S.NoticeLon).val(data.lon);
|
form.find('[name=lon]').val(data.lon);
|
||||||
$('#'+SN.C.S.NoticeLocationNs).val(lns);
|
form.find('[name=location_ns]').val(lns);
|
||||||
$('#'+SN.C.S.NoticeLocationId).val(lid);
|
form.find('[name=location_id]').val(lid);
|
||||||
$('#'+SN.C.S.NoticeDataGeo).attr('checked', true);
|
form.find('[name=notice_data-geo]').attr('checked', true);
|
||||||
|
|
||||||
var cookieValue = {
|
var cookieValue = {
|
||||||
NLat: data.lat,
|
NLat: data.lat,
|
||||||
@ -1114,10 +1065,11 @@ var SN = { // StatusNet
|
|||||||
|
|
||||||
if ($.cookie(SN.C.S.NoticeDataGeoCookie) === null || $.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
|
if ($.cookie(SN.C.S.NoticeDataGeoCookie) === null || $.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
|
||||||
if (navigator.geolocation) {
|
if (navigator.geolocation) {
|
||||||
|
SN.U.NoticeGeoStatus('Requesting location from browser...');
|
||||||
navigator.geolocation.getCurrentPosition(
|
navigator.geolocation.getCurrentPosition(
|
||||||
function(position) {
|
function(position) {
|
||||||
$('#'+SN.C.S.NoticeLat).val(position.coords.latitude);
|
form.find('[name=lat]').val(position.coords.latitude);
|
||||||
$('#'+SN.C.S.NoticeLon).val(position.coords.longitude);
|
form.find('[name=lon]').val(position.coords.longitude);
|
||||||
|
|
||||||
var data = {
|
var data = {
|
||||||
lat: position.coords.latitude,
|
lat: position.coords.latitude,
|
||||||
@ -1131,10 +1083,11 @@ var SN = { // StatusNet
|
|||||||
function(error) {
|
function(error) {
|
||||||
switch(error.code) {
|
switch(error.code) {
|
||||||
case error.PERMISSION_DENIED:
|
case error.PERMISSION_DENIED:
|
||||||
removeNoticeDataGeo();
|
removeNoticeDataGeo('Location permission denied.');
|
||||||
break;
|
break;
|
||||||
case error.TIMEOUT:
|
case error.TIMEOUT:
|
||||||
$('#'+SN.C.S.NoticeDataGeo).attr('checked', false);
|
//$('#'+SN.C.S.NoticeDataGeo).attr('checked', false);
|
||||||
|
removeNoticeDataGeo('Location lookup timeout.');
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -1164,12 +1117,13 @@ var SN = { // StatusNet
|
|||||||
else {
|
else {
|
||||||
var cookieValue = JSON.parse($.cookie(SN.C.S.NoticeDataGeoCookie));
|
var cookieValue = JSON.parse($.cookie(SN.C.S.NoticeDataGeoCookie));
|
||||||
|
|
||||||
$('#'+SN.C.S.NoticeLat).val(cookieValue.NLat);
|
form.find('[name=lat]').val(cookieValue.NLat);
|
||||||
$('#'+SN.C.S.NoticeLon).val(cookieValue.NLon);
|
form.find('[name=lon]').val(cookieValue.NLon);
|
||||||
$('#'+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS);
|
form.find('[name=location_ns]').val(cookieValue.NLNS);
|
||||||
$('#'+SN.C.S.NoticeLocationId).val(cookieValue.NLID);
|
form.find('[name=location_id]').val(cookieValue.NLID);
|
||||||
$('#'+SN.C.S.NoticeDataGeo).attr('checked', cookieValue.NDG);
|
form.find('[name=notice_data-geo]').attr('checked', cookieValue.NDG);
|
||||||
|
|
||||||
|
SN.U.NoticeGeoStatus(cookieValue.NLN, cookieValue.NLat, cookieValue.NLon, cookieValue.NLNU);
|
||||||
$('label[for='+SN.C.S.NoticeDataGeo+']')
|
$('label[for='+SN.C.S.NoticeDataGeo+']')
|
||||||
.attr('title', NoticeDataGeo_text.ShareDisable + ' (' + cookieValue.NLN + ')')
|
.attr('title', NoticeDataGeo_text.ShareDisable + ' (' + cookieValue.NLN + ')')
|
||||||
.addClass('checked');
|
.addClass('checked');
|
||||||
@ -1182,6 +1136,42 @@ var SN = { // StatusNet
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create or update a geolocation status widget in this notice posting form.
|
||||||
|
*
|
||||||
|
* @param {String} status
|
||||||
|
* @param {String} lat (optional)
|
||||||
|
* @param {String} lon (optional)
|
||||||
|
* @param {String} url (optional)
|
||||||
|
*/
|
||||||
|
NoticeGeoStatus: function(status, lat, lon, url)
|
||||||
|
{
|
||||||
|
var form = $('#form_notice');
|
||||||
|
var wrapper = form.find('.geo_status_wrapper');
|
||||||
|
if (wrapper.length == 0) {
|
||||||
|
wrapper = $('<div class="'+SN.C.S.Success+' geo_status_wrapper"><button class="close" style="float:right">×</button><div class="geo_status"></div></div>');
|
||||||
|
wrapper.find('button.close').click(function() {
|
||||||
|
$('#'+SN.C.S.NoticeDataGeo).removeAttr('checked').change();
|
||||||
|
});
|
||||||
|
form.append(wrapper);
|
||||||
|
}
|
||||||
|
var label;
|
||||||
|
if (url) {
|
||||||
|
label = $('<a></a>').attr('href', url);
|
||||||
|
} else {
|
||||||
|
label = $('<span></span>');
|
||||||
|
}
|
||||||
|
label.text(status);
|
||||||
|
if (lat || lon) {
|
||||||
|
var latlon = lat + ';' + lon;
|
||||||
|
label.attr('title', latlon);
|
||||||
|
if (!status) {
|
||||||
|
label.text(latlon)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
wrapper.find('.geo_status').empty().append(label);
|
||||||
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Setup function -- DOES NOT trigger actions immediately.
|
* Setup function -- DOES NOT trigger actions immediately.
|
||||||
*
|
*
|
||||||
@ -1335,14 +1325,13 @@ var SN = { // StatusNet
|
|||||||
*/
|
*/
|
||||||
NoticeForm: function() {
|
NoticeForm: function() {
|
||||||
if ($('body.user_in').length > 0) {
|
if ($('body.user_in').length > 0) {
|
||||||
SN.U.NoticeLocationAttach();
|
|
||||||
|
|
||||||
$('.'+SN.C.S.FormNotice).each(function() {
|
$('.'+SN.C.S.FormNotice).each(function() {
|
||||||
SN.U.FormNoticeXHR($(this));
|
var form = $(this);
|
||||||
SN.U.FormNoticeEnhancements($(this));
|
SN.U.NoticeLocationAttach(form);
|
||||||
|
SN.U.FormNoticeXHR(form);
|
||||||
|
SN.U.FormNoticeEnhancements(form);
|
||||||
|
SN.U.NoticeDataAttach(form);
|
||||||
});
|
});
|
||||||
|
|
||||||
SN.U.NoticeDataAttach();
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
2
js/util.min.js
vendored
2
js/util.min.js
vendored
File diff suppressed because one or more lines are too long
@ -295,7 +295,13 @@ class Action extends HTMLOutputter // lawsuit
|
|||||||
}
|
}
|
||||||
if (Event::handle('StartShowStatusNetScripts', array($this)) &&
|
if (Event::handle('StartShowStatusNetScripts', array($this)) &&
|
||||||
Event::handle('StartShowLaconicaScripts', array($this))) {
|
Event::handle('StartShowLaconicaScripts', array($this))) {
|
||||||
$this->script('util.min.js');
|
if (common_config('site', 'minify')) {
|
||||||
|
$this->script('util.min.js');
|
||||||
|
} else {
|
||||||
|
$this->script('util.js');
|
||||||
|
$this->script('xbImportNode.js');
|
||||||
|
$this->script('geometa.js');
|
||||||
|
}
|
||||||
$this->showScriptMessages();
|
$this->showScriptMessages();
|
||||||
// Frame-busting code to avoid clickjacking attacks.
|
// Frame-busting code to avoid clickjacking attacks.
|
||||||
$this->inlineScript('if (window.top !== window.self) { window.top.location.href = window.self.location.href; }');
|
$this->inlineScript('if (window.top !== window.self) { window.top.location.href = window.self.location.href; }');
|
||||||
@ -325,10 +331,10 @@ class Action extends HTMLOutputter // lawsuit
|
|||||||
$messages['showmore_tooltip'] = _m('TOOLTIP', 'Show more');
|
$messages['showmore_tooltip'] = _m('TOOLTIP', 'Show more');
|
||||||
|
|
||||||
// TRANS: Inline reply form submit button: submits a reply comment.
|
// TRANS: Inline reply form submit button: submits a reply comment.
|
||||||
$messages['reply_submit'] = _m('BUTTON', 'Comment');
|
$messages['reply_submit'] = _m('BUTTON', 'Reply');
|
||||||
|
|
||||||
// TRANS: Placeholder text for inline reply form. Clicking in this box will turn it into a mini notice form.
|
// TRANS: Placeholder text for inline reply form. Clicking in this box will turn it into a mini notice form.
|
||||||
$messages['reply_comment'] = _m('Add a comment...');
|
$messages['reply_placeholder'] = _m('Write a reply...');
|
||||||
|
|
||||||
$messages = array_merge($messages, $this->getScriptMessages());
|
$messages = array_merge($messages, $this->getScriptMessages());
|
||||||
|
|
||||||
|
@ -63,6 +63,7 @@ $default =
|
|||||||
'use_x_sendfile' => false,
|
'use_x_sendfile' => false,
|
||||||
'notice' => null, // site wide notice text
|
'notice' => null, // site wide notice text
|
||||||
'build' => 1, // build number, for code-dependent cache
|
'build' => 1, // build number, for code-dependent cache
|
||||||
|
'minify' => true, // true to use the minified versions of JS files; false to use orig files. Can aid during development
|
||||||
),
|
),
|
||||||
'db' =>
|
'db' =>
|
||||||
array('database' => 'YOU HAVE TO SET THIS IN config.php',
|
array('database' => 'YOU HAVE TO SET THIS IN config.php',
|
||||||
|
@ -163,8 +163,7 @@ class MessageForm extends Form
|
|||||||
|
|
||||||
if ($contentLimit > 0) {
|
if ($contentLimit > 0) {
|
||||||
$this->out->element('span',
|
$this->out->element('span',
|
||||||
array('id' => 'notice_text-count',
|
array('class' => 'count'),
|
||||||
'class' => 'form_note'),
|
|
||||||
$contentLimit);
|
$contentLimit);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -183,8 +183,7 @@ class NoticeForm extends Form
|
|||||||
|
|
||||||
if ($contentLimit > 0) {
|
if ($contentLimit > 0) {
|
||||||
$this->out->element('span',
|
$this->out->element('span',
|
||||||
array('id' => 'notice_text-count',
|
array('class' => 'count'),
|
||||||
'class' => 'form_note'),
|
|
||||||
$contentLimit);
|
$contentLimit);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -267,7 +267,7 @@ class ThreadedNoticeListMoreItem extends NoticeListItem
|
|||||||
$notice = new Notice();
|
$notice = new Notice();
|
||||||
$notice->conversation = $id;
|
$notice->conversation = $id;
|
||||||
$n = $notice->count() - 1;
|
$n = $notice->count() - 1;
|
||||||
$msg = sprintf(_m('Show all %d comment', 'Show all %d comments', $n), $n);
|
$msg = sprintf(_m('Show %d reply', 'Show all %d replies', $n), $n);
|
||||||
|
|
||||||
$this->out->element('a', array('href' => $url), $msg);
|
$this->out->element('a', array('href' => $url), $msg);
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
2144
locale/statusnet.pot
2144
locale/statusnet.pot
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
22
plugins/AccountManager/locale/AccountManager.pot
Normal file
22
plugins/AccountManager/locale/AccountManager.pot
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: AccountManagerPlugin.php:112
|
||||||
|
msgid ""
|
||||||
|
"The Account Manager plugin implements the Account Manager specification."
|
||||||
|
msgstr ""
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
30
plugins/Aim/locale/Aim.pot
Normal file
30
plugins/Aim/locale/Aim.pot
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: aimmanager.php:80
|
||||||
|
msgid "Send me a message to post a notice"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: AimPlugin.php:60
|
||||||
|
msgid "AIM"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: AimPlugin.php:165
|
||||||
|
msgid ""
|
||||||
|
"The AIM plugin allows users to send and receive notices over the AIM network."
|
||||||
|
msgstr ""
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
30
plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po
Normal file
30
plugins/Awesomeness/locale/pt/LC_MESSAGES/Awesomeness.po
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
# Translation of StatusNet - Awesomeness to Portuguese (Português)
|
||||||
|
# Exported from translatewiki.net
|
||||||
|
#
|
||||||
|
# Author: Waldir
|
||||||
|
# --
|
||||||
|
# This file is distributed under the same license as the StatusNet package.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: StatusNet - Awesomeness\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
|
"PO-Revision-Date: 2011-03-03 17:26:39+0000\n"
|
||||||
|
"Language-Team: Portuguese <http://translatewiki.net/wiki/Portal:pt>\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-POT-Import-Date: 2011-02-14 17:19:12+0000\n"
|
||||||
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
|
"X-Language-Code: pt\n"
|
||||||
|
"X-Message-Group: #out-statusnet-plugin-awesomeness\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#: AwesomenessPlugin.php:56
|
||||||
|
msgid ""
|
||||||
|
"The Awesomeness plugin adds additional awesomeness to a StatusNet "
|
||||||
|
"installation."
|
||||||
|
msgstr ""
|
||||||
|
"O plugin de Espectacularidade adiciona espectacularidade adicional a uma "
|
||||||
|
"instalação de StatusNet."
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -16,20 +16,20 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=CHARSET\n"
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:48
|
#: BitlyUrlPlugin.php:46
|
||||||
msgid "You must specify a serviceUrl for bit.ly shortening."
|
msgid "You must specify a serviceUrl for bit.ly shortening."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:175
|
#: BitlyUrlPlugin.php:173
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:216
|
#: BitlyUrlPlugin.php:214
|
||||||
msgid "bit.ly"
|
msgid "bit.ly"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||||
msgid "bit.ly URL shortening"
|
msgid "bit.ly URL shortening"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -10,35 +10,35 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:40+0000\n"
|
||||||
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
||||||
"net/wiki/Portal:be-tarask>\n"
|
"net/wiki/Portal:be-tarask>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
"X-POT-Import-Date: 2011-02-17 11:29:48+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: be-tarask\n"
|
"X-Language-Code: be-tarask\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:48
|
#: BitlyUrlPlugin.php:46
|
||||||
msgid "You must specify a serviceUrl for bit.ly shortening."
|
msgid "You must specify a serviceUrl for bit.ly shortening."
|
||||||
msgstr "Вам неабходна пазначыць serviceUrl для сэрвісу скарачэньняў bit.ly."
|
msgstr "Вам неабходна пазначыць serviceUrl для сэрвісу скарачэньняў bit.ly."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:175
|
#: BitlyUrlPlugin.php:173
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Выкарыстаньне сэрвісу скарачэньня URL-адрасоў <a href=\"http://%1$s/\">%1$s</"
|
"Выкарыстаньне сэрвісу скарачэньня URL-адрасоў <a href=\"http://%1$s/\">%1$s</"
|
||||||
"a>."
|
"a>."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:216
|
#: BitlyUrlPlugin.php:214
|
||||||
msgid "bit.ly"
|
msgid "bit.ly"
|
||||||
msgstr "bit.ly"
|
msgstr "bit.ly"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||||
msgid "bit.ly URL shortening"
|
msgid "bit.ly URL shortening"
|
||||||
msgstr "Скарачэньне URL-адрасоў bit.ly"
|
msgstr "Скарачэньне URL-адрасоў bit.ly"
|
||||||
|
|
||||||
|
@ -9,33 +9,33 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-02-17 10:25+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-02-17 10:27:59+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:40+0000\n"
|
||||||
"Language-Team: Catalan <http://translatewiki.net/wiki/Portal:ca>\n"
|
"Language-Team: Catalan <http://translatewiki.net/wiki/Portal:ca>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-29 22:19:24+0000\n"
|
"X-POT-Import-Date: 2011-02-17 11:29:48+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: ca\n"
|
"X-Language-Code: ca\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:48
|
#: BitlyUrlPlugin.php:46
|
||||||
msgid "You must specify a serviceUrl for bit.ly shortening."
|
msgid "You must specify a serviceUrl for bit.ly shortening."
|
||||||
msgstr "Heu d'especificar un URL de servei per a l'escurçament de bit.ly"
|
msgstr "Heu d'especificar un URL de servei per a l'escurçament de bit.ly"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:175
|
#: BitlyUrlPlugin.php:173
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Fa servir el servei d'escurçament d'URL <a href=\"http://%1$s/\">%1$s</a>."
|
"Fa servir el servei d'escurçament d'URL <a href=\"http://%1$s/\">%1$s</a>."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:216
|
#: BitlyUrlPlugin.php:214
|
||||||
msgid "bit.ly"
|
msgid "bit.ly"
|
||||||
msgstr "bit.ly"
|
msgstr "bit.ly"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||||
msgid "bit.ly URL shortening"
|
msgid "bit.ly URL shortening"
|
||||||
msgstr "Escurçament d'URL bit.ly"
|
msgstr "Escurçament d'URL bit.ly"
|
||||||
|
|
||||||
|
@ -10,32 +10,32 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:40+0000\n"
|
||||||
"Language-Team: German <http://translatewiki.net/wiki/Portal:de>\n"
|
"Language-Team: German <http://translatewiki.net/wiki/Portal:de>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
"X-POT-Import-Date: 2011-02-17 11:29:48+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: de\n"
|
"X-Language-Code: de\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:48
|
#: BitlyUrlPlugin.php:46
|
||||||
msgid "You must specify a serviceUrl for bit.ly shortening."
|
msgid "You must specify a serviceUrl for bit.ly shortening."
|
||||||
msgstr "Du musst eine „serviceUrl“ zur bit.ly-URL-Kürzung angeben."
|
msgstr "Du musst eine „serviceUrl“ zur bit.ly-URL-Kürzung angeben."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:175
|
#: BitlyUrlPlugin.php:173
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||||
msgstr "Benutzung des <a href=\"http://%1$s/\">%1$s</a>-URL-Kürzungsdienstes."
|
msgstr "Benutzung des <a href=\"http://%1$s/\">%1$s</a>-URL-Kürzungsdienstes."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:216
|
#: BitlyUrlPlugin.php:214
|
||||||
msgid "bit.ly"
|
msgid "bit.ly"
|
||||||
msgstr "bit.ly"
|
msgstr "bit.ly"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||||
msgid "bit.ly URL shortening"
|
msgid "bit.ly URL shortening"
|
||||||
msgstr "bit.ly-URL-Kürzung"
|
msgstr "bit.ly-URL-Kürzung"
|
||||||
|
|
||||||
|
@ -9,34 +9,34 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:40+0000\n"
|
||||||
"Language-Team: French <http://translatewiki.net/wiki/Portal:fr>\n"
|
"Language-Team: French <http://translatewiki.net/wiki/Portal:fr>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
"X-POT-Import-Date: 2011-02-17 11:29:48+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: fr\n"
|
"X-Language-Code: fr\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:48
|
#: BitlyUrlPlugin.php:46
|
||||||
msgid "You must specify a serviceUrl for bit.ly shortening."
|
msgid "You must specify a serviceUrl for bit.ly shortening."
|
||||||
msgstr "Vous devez spécifier un serviceUrl pour le raccourcissement bit.ly."
|
msgstr "Vous devez spécifier un serviceUrl pour le raccourcissement bit.ly."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:175
|
#: BitlyUrlPlugin.php:173
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Utilise le service de raccourcissement d’URL <a href=\"http://%1$s/\">%1$s</"
|
"Utilise le service de raccourcissement d’URL <a href=\"http://%1$s/\">%1$s</"
|
||||||
"a>."
|
"a>."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:216
|
#: BitlyUrlPlugin.php:214
|
||||||
msgid "bit.ly"
|
msgid "bit.ly"
|
||||||
msgstr "bit.ly"
|
msgstr "bit.ly"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||||
msgid "bit.ly URL shortening"
|
msgid "bit.ly URL shortening"
|
||||||
msgstr "Raccourcissement d’URL bit.ly"
|
msgstr "Raccourcissement d’URL bit.ly"
|
||||||
|
|
||||||
|
@ -9,34 +9,34 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:40+0000\n"
|
||||||
"Language-Team: Galician <http://translatewiki.net/wiki/Portal:gl>\n"
|
"Language-Team: Galician <http://translatewiki.net/wiki/Portal:gl>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
"X-POT-Import-Date: 2011-02-17 11:29:48+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: gl\n"
|
"X-Language-Code: gl\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:48
|
#: BitlyUrlPlugin.php:46
|
||||||
msgid "You must specify a serviceUrl for bit.ly shortening."
|
msgid "You must specify a serviceUrl for bit.ly shortening."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:175
|
#: BitlyUrlPlugin.php:173
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Emprega o servizo de abreviación de enderezos URL <a href=\"http://%1$s/\">%1"
|
"Emprega o servizo de abreviación de enderezos URL <a href=\"http://%1$s/\">%1"
|
||||||
"$s</a>."
|
"$s</a>."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:216
|
#: BitlyUrlPlugin.php:214
|
||||||
msgid "bit.ly"
|
msgid "bit.ly"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||||
msgid "bit.ly URL shortening"
|
msgid "bit.ly URL shortening"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -9,32 +9,32 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:40+0000\n"
|
||||||
"Language-Team: Interlingua <http://translatewiki.net/wiki/Portal:ia>\n"
|
"Language-Team: Interlingua <http://translatewiki.net/wiki/Portal:ia>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
"X-POT-Import-Date: 2011-02-17 11:29:48+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: ia\n"
|
"X-Language-Code: ia\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:48
|
#: BitlyUrlPlugin.php:46
|
||||||
msgid "You must specify a serviceUrl for bit.ly shortening."
|
msgid "You must specify a serviceUrl for bit.ly shortening."
|
||||||
msgstr "Tu debe specificar un serviceUrl pro accurtamento bit.ly."
|
msgstr "Tu debe specificar un serviceUrl pro accurtamento bit.ly."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:175
|
#: BitlyUrlPlugin.php:173
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||||
msgstr "Usa abbreviator de URL <a href=\"http://%1$s/\">%1$s</a>."
|
msgstr "Usa abbreviator de URL <a href=\"http://%1$s/\">%1$s</a>."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:216
|
#: BitlyUrlPlugin.php:214
|
||||||
msgid "bit.ly"
|
msgid "bit.ly"
|
||||||
msgstr "bit.ly"
|
msgstr "bit.ly"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||||
msgid "bit.ly URL shortening"
|
msgid "bit.ly URL shortening"
|
||||||
msgstr "Accurtamento de URL con bit.ly"
|
msgstr "Accurtamento de URL con bit.ly"
|
||||||
|
|
||||||
|
@ -9,34 +9,34 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:40+0000\n"
|
||||||
"Language-Team: Macedonian <http://translatewiki.net/wiki/Portal:mk>\n"
|
"Language-Team: Macedonian <http://translatewiki.net/wiki/Portal:mk>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
"X-POT-Import-Date: 2011-02-17 11:29:48+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: mk\n"
|
"X-Language-Code: mk\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n"
|
"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:48
|
#: BitlyUrlPlugin.php:46
|
||||||
msgid "You must specify a serviceUrl for bit.ly shortening."
|
msgid "You must specify a serviceUrl for bit.ly shortening."
|
||||||
msgstr "Мора да наведете URL-адреса за скратување со bit.ly."
|
msgstr "Мора да наведете URL-адреса за скратување со bit.ly."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:175
|
#: BitlyUrlPlugin.php:173
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Користи <a href=\"http://%1$s/\">%1$s</a> - служба за скратување на URL-"
|
"Користи <a href=\"http://%1$s/\">%1$s</a> - служба за скратување на URL-"
|
||||||
"адреса."
|
"адреса."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:216
|
#: BitlyUrlPlugin.php:214
|
||||||
msgid "bit.ly"
|
msgid "bit.ly"
|
||||||
msgstr "bit.ly"
|
msgstr "bit.ly"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||||
msgid "bit.ly URL shortening"
|
msgid "bit.ly URL shortening"
|
||||||
msgstr "Скратување на URL со bit.ly"
|
msgstr "Скратување на URL со bit.ly"
|
||||||
|
|
||||||
|
@ -9,32 +9,32 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:41+0000\n"
|
||||||
"Language-Team: Norwegian (bokmål) <http://translatewiki.net/wiki/Portal:no>\n"
|
"Language-Team: Norwegian (bokmål) <http://translatewiki.net/wiki/Portal:no>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
"X-POT-Import-Date: 2011-02-17 11:29:48+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: no\n"
|
"X-Language-Code: no\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:48
|
#: BitlyUrlPlugin.php:46
|
||||||
msgid "You must specify a serviceUrl for bit.ly shortening."
|
msgid "You must specify a serviceUrl for bit.ly shortening."
|
||||||
msgstr "Du må angi en serviceUrl for bit.ly-forkortelse."
|
msgstr "Du må angi en serviceUrl for bit.ly-forkortelse."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:175
|
#: BitlyUrlPlugin.php:173
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||||
msgstr "Bruker URL-forkortertjenesten <a href=\"http://%1$s/\">%1$s</a>."
|
msgstr "Bruker URL-forkortertjenesten <a href=\"http://%1$s/\">%1$s</a>."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:216
|
#: BitlyUrlPlugin.php:214
|
||||||
msgid "bit.ly"
|
msgid "bit.ly"
|
||||||
msgstr "bit.ly"
|
msgstr "bit.ly"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||||
msgid "bit.ly URL shortening"
|
msgid "bit.ly URL shortening"
|
||||||
msgstr "bit.ly URL-forkortelse"
|
msgstr "bit.ly URL-forkortelse"
|
||||||
|
|
||||||
|
@ -9,34 +9,34 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:40+0000\n"
|
||||||
"Language-Team: Dutch <http://translatewiki.net/wiki/Portal:nl>\n"
|
"Language-Team: Dutch <http://translatewiki.net/wiki/Portal:nl>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
"X-POT-Import-Date: 2011-02-17 11:29:48+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: nl\n"
|
"X-Language-Code: nl\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:48
|
#: BitlyUrlPlugin.php:46
|
||||||
msgid "You must specify a serviceUrl for bit.ly shortening."
|
msgid "You must specify a serviceUrl for bit.ly shortening."
|
||||||
msgstr "U moet een serviceUrl opgeven om URL's in te korten via bit.ly."
|
msgstr "U moet een serviceUrl opgeven om URL's in te korten via bit.ly."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:175
|
#: BitlyUrlPlugin.php:173
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Gebruikt de dienst <a href=\"http://%1$s/\">%1$s</a> om URL's korter te "
|
"Gebruikt de dienst <a href=\"http://%1$s/\">%1$s</a> om URL's korter te "
|
||||||
"maken."
|
"maken."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:216
|
#: BitlyUrlPlugin.php:214
|
||||||
msgid "bit.ly"
|
msgid "bit.ly"
|
||||||
msgstr "bit.ly"
|
msgstr "bit.ly"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||||
msgid "bit.ly URL shortening"
|
msgid "bit.ly URL shortening"
|
||||||
msgstr "URL's inkorten via bit.ly"
|
msgstr "URL's inkorten via bit.ly"
|
||||||
|
|
||||||
|
@ -11,33 +11,33 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:41+0000\n"
|
||||||
"Language-Team: Russian <http://translatewiki.net/wiki/Portal:ru>\n"
|
"Language-Team: Russian <http://translatewiki.net/wiki/Portal:ru>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
"X-POT-Import-Date: 2011-02-17 11:29:48+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: ru\n"
|
"X-Language-Code: ru\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= "
|
"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"
|
"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:48
|
#: BitlyUrlPlugin.php:46
|
||||||
msgid "You must specify a serviceUrl for bit.ly shortening."
|
msgid "You must specify a serviceUrl for bit.ly shortening."
|
||||||
msgstr "Вы должны указать serviceUrl для bit.ly сокращений."
|
msgstr "Вы должны указать serviceUrl для bit.ly сокращений."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:175
|
#: BitlyUrlPlugin.php:173
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||||
msgstr "Использование службы сокращения URL <a href=\"http://%1$s/\">%1$s</a>."
|
msgstr "Использование службы сокращения URL <a href=\"http://%1$s/\">%1$s</a>."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:216
|
#: BitlyUrlPlugin.php:214
|
||||||
msgid "bit.ly"
|
msgid "bit.ly"
|
||||||
msgstr "bit.ly"
|
msgstr "bit.ly"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||||
msgid "bit.ly URL shortening"
|
msgid "bit.ly URL shortening"
|
||||||
msgstr "Сервис сокращения URL bit.ly"
|
msgstr "Сервис сокращения URL bit.ly"
|
||||||
|
|
||||||
|
@ -9,35 +9,35 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:41+0000\n"
|
||||||
"Language-Team: Ukrainian <http://translatewiki.net/wiki/Portal:uk>\n"
|
"Language-Team: Ukrainian <http://translatewiki.net/wiki/Portal:uk>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
"X-POT-Import-Date: 2011-02-17 11:29:48+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: uk\n"
|
"X-Language-Code: uk\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= "
|
"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"
|
"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:48
|
#: BitlyUrlPlugin.php:46
|
||||||
msgid "You must specify a serviceUrl for bit.ly shortening."
|
msgid "You must specify a serviceUrl for bit.ly shortening."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ви мусите зазначити URL-адресу для сервісу скорочення URL-адрес bit.ly."
|
"Ви мусите зазначити URL-адресу для сервісу скорочення URL-адрес bit.ly."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:175
|
#: BitlyUrlPlugin.php:173
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Використання <a href=\"http://%1$s/\">%1$s</a> для скорочення URL-адрес."
|
"Використання <a href=\"http://%1$s/\">%1$s</a> для скорочення URL-адрес."
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:216
|
#: BitlyUrlPlugin.php:214
|
||||||
msgid "bit.ly"
|
msgid "bit.ly"
|
||||||
msgstr "bit.ly"
|
msgstr "bit.ly"
|
||||||
|
|
||||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||||
msgid "bit.ly URL shortening"
|
msgid "bit.ly URL shortening"
|
||||||
msgstr "Скорочення URL-адрес bit.ly"
|
msgstr "Скорочення URL-адрес bit.ly"
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -16,7 +16,7 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=CHARSET\n"
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: ClientSideShortenPlugin.php:74
|
#: ClientSideShortenPlugin.php:76
|
||||||
msgid ""
|
msgid ""
|
||||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||||
"shorten URLs as they entered, and before the notice is submitted."
|
"shorten URLs as they entered, and before the notice is submitted."
|
||||||
|
@ -9,20 +9,20 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:27+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||||
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
||||||
"net/wiki/Portal:be-tarask>\n"
|
"net/wiki/Portal:be-tarask>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
"X-POT-Import-Date: 2011-01-29 22:19:34+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: be-tarask\n"
|
"X-Language-Code: be-tarask\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: ClientSideShortenPlugin.php:74
|
#: ClientSideShortenPlugin.php:76
|
||||||
msgid ""
|
msgid ""
|
||||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||||
"shorten URLs as they entered, and before the notice is submitted."
|
"shorten URLs as they entered, and before the notice is submitted."
|
||||||
|
@ -9,19 +9,19 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||||
"Language-Team: Breton <http://translatewiki.net/wiki/Portal:br>\n"
|
"Language-Team: Breton <http://translatewiki.net/wiki/Portal:br>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
"X-POT-Import-Date: 2011-01-29 22:19:34+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: br\n"
|
"X-Language-Code: br\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
#: ClientSideShortenPlugin.php:74
|
#: ClientSideShortenPlugin.php:76
|
||||||
msgid ""
|
msgid ""
|
||||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||||
"shorten URLs as they entered, and before the notice is submitted."
|
"shorten URLs as they entered, and before the notice is submitted."
|
||||||
|
@ -9,19 +9,19 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||||
"Language-Team: German <http://translatewiki.net/wiki/Portal:de>\n"
|
"Language-Team: German <http://translatewiki.net/wiki/Portal:de>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
"X-POT-Import-Date: 2011-01-29 22:19:34+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: de\n"
|
"X-Language-Code: de\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: ClientSideShortenPlugin.php:74
|
#: ClientSideShortenPlugin.php:76
|
||||||
msgid ""
|
msgid ""
|
||||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||||
"shorten URLs as they entered, and before the notice is submitted."
|
"shorten URLs as they entered, and before the notice is submitted."
|
||||||
|
@ -9,19 +9,19 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||||
"Language-Team: Spanish <http://translatewiki.net/wiki/Portal:es>\n"
|
"Language-Team: Spanish <http://translatewiki.net/wiki/Portal:es>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
"X-POT-Import-Date: 2011-01-29 22:19:34+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: es\n"
|
"X-Language-Code: es\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: ClientSideShortenPlugin.php:74
|
#: ClientSideShortenPlugin.php:76
|
||||||
msgid ""
|
msgid ""
|
||||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||||
"shorten URLs as they entered, and before the notice is submitted."
|
"shorten URLs as they entered, and before the notice is submitted."
|
||||||
|
@ -10,19 +10,19 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||||
"Language-Team: French <http://translatewiki.net/wiki/Portal:fr>\n"
|
"Language-Team: French <http://translatewiki.net/wiki/Portal:fr>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
"X-POT-Import-Date: 2011-01-29 22:19:34+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: fr\n"
|
"X-Language-Code: fr\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
#: ClientSideShortenPlugin.php:74
|
#: ClientSideShortenPlugin.php:76
|
||||||
msgid ""
|
msgid ""
|
||||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||||
"shorten URLs as they entered, and before the notice is submitted."
|
"shorten URLs as they entered, and before the notice is submitted."
|
||||||
|
@ -9,19 +9,19 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||||
"Language-Team: Hebrew <http://translatewiki.net/wiki/Portal:he>\n"
|
"Language-Team: Hebrew <http://translatewiki.net/wiki/Portal:he>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
"X-POT-Import-Date: 2011-01-29 22:19:34+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: he\n"
|
"X-Language-Code: he\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: ClientSideShortenPlugin.php:74
|
#: ClientSideShortenPlugin.php:76
|
||||||
msgid ""
|
msgid ""
|
||||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||||
"shorten URLs as they entered, and before the notice is submitted."
|
"shorten URLs as they entered, and before the notice is submitted."
|
||||||
|
@ -9,19 +9,19 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||||
"Language-Team: Interlingua <http://translatewiki.net/wiki/Portal:ia>\n"
|
"Language-Team: Interlingua <http://translatewiki.net/wiki/Portal:ia>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
"X-POT-Import-Date: 2011-01-29 22:19:34+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: ia\n"
|
"X-Language-Code: ia\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: ClientSideShortenPlugin.php:74
|
#: ClientSideShortenPlugin.php:76
|
||||||
msgid ""
|
msgid ""
|
||||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||||
"shorten URLs as they entered, and before the notice is submitted."
|
"shorten URLs as they entered, and before the notice is submitted."
|
||||||
|
@ -9,19 +9,19 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||||
"Language-Team: Indonesian <http://translatewiki.net/wiki/Portal:id>\n"
|
"Language-Team: Indonesian <http://translatewiki.net/wiki/Portal:id>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
"X-POT-Import-Date: 2011-01-29 22:19:34+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: id\n"
|
"X-Language-Code: id\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#: ClientSideShortenPlugin.php:74
|
#: ClientSideShortenPlugin.php:76
|
||||||
msgid ""
|
msgid ""
|
||||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||||
"shorten URLs as they entered, and before the notice is submitted."
|
"shorten URLs as they entered, and before the notice is submitted."
|
||||||
|
@ -9,19 +9,19 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||||
"Language-Team: Macedonian <http://translatewiki.net/wiki/Portal:mk>\n"
|
"Language-Team: Macedonian <http://translatewiki.net/wiki/Portal:mk>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
"X-POT-Import-Date: 2011-01-29 22:19:34+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: mk\n"
|
"X-Language-Code: mk\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n"
|
"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n"
|
||||||
|
|
||||||
#: ClientSideShortenPlugin.php:74
|
#: ClientSideShortenPlugin.php:76
|
||||||
msgid ""
|
msgid ""
|
||||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||||
"shorten URLs as they entered, and before the notice is submitted."
|
"shorten URLs as they entered, and before the notice is submitted."
|
||||||
|
@ -9,19 +9,19 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||||
"Language-Team: Norwegian (bokmål) <http://translatewiki.net/wiki/Portal:no>\n"
|
"Language-Team: Norwegian (bokmål) <http://translatewiki.net/wiki/Portal:no>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
"X-POT-Import-Date: 2011-01-29 22:19:34+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: no\n"
|
"X-Language-Code: no\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: ClientSideShortenPlugin.php:74
|
#: ClientSideShortenPlugin.php:76
|
||||||
msgid ""
|
msgid ""
|
||||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||||
"shorten URLs as they entered, and before the notice is submitted."
|
"shorten URLs as they entered, and before the notice is submitted."
|
||||||
|
@ -9,19 +9,19 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||||
"Language-Team: Dutch <http://translatewiki.net/wiki/Portal:nl>\n"
|
"Language-Team: Dutch <http://translatewiki.net/wiki/Portal:nl>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
"X-POT-Import-Date: 2011-01-29 22:19:34+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: nl\n"
|
"X-Language-Code: nl\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: ClientSideShortenPlugin.php:74
|
#: ClientSideShortenPlugin.php:76
|
||||||
msgid ""
|
msgid ""
|
||||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||||
"shorten URLs as they entered, and before the notice is submitted."
|
"shorten URLs as they entered, and before the notice is submitted."
|
||||||
|
@ -10,20 +10,20 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||||
"Language-Team: Russian <http://translatewiki.net/wiki/Portal:ru>\n"
|
"Language-Team: Russian <http://translatewiki.net/wiki/Portal:ru>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
"X-POT-Import-Date: 2011-01-29 22:19:34+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: ru\n"
|
"X-Language-Code: ru\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= "
|
"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"
|
"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n"
|
||||||
|
|
||||||
#: ClientSideShortenPlugin.php:74
|
#: ClientSideShortenPlugin.php:76
|
||||||
msgid ""
|
msgid ""
|
||||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||||
"shorten URLs as they entered, and before the notice is submitted."
|
"shorten URLs as they entered, and before the notice is submitted."
|
||||||
|
@ -9,19 +9,19 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||||
"Language-Team: Tagalog <http://translatewiki.net/wiki/Portal:tl>\n"
|
"Language-Team: Tagalog <http://translatewiki.net/wiki/Portal:tl>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
"X-POT-Import-Date: 2011-01-29 22:19:34+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: tl\n"
|
"X-Language-Code: tl\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: ClientSideShortenPlugin.php:74
|
#: ClientSideShortenPlugin.php:76
|
||||||
msgid ""
|
msgid ""
|
||||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||||
"shorten URLs as they entered, and before the notice is submitted."
|
"shorten URLs as they entered, and before the notice is submitted."
|
||||||
|
@ -10,20 +10,20 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||||
"Language-Team: Ukrainian <http://translatewiki.net/wiki/Portal:uk>\n"
|
"Language-Team: Ukrainian <http://translatewiki.net/wiki/Portal:uk>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
"X-POT-Import-Date: 2011-01-29 22:19:34+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: uk\n"
|
"X-Language-Code: uk\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= "
|
"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"
|
"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n"
|
||||||
|
|
||||||
#: ClientSideShortenPlugin.php:74
|
#: ClientSideShortenPlugin.php:76
|
||||||
msgid ""
|
msgid ""
|
||||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||||
"shorten URLs as they entered, and before the notice is submitted."
|
"shorten URLs as they entered, and before the notice is submitted."
|
||||||
|
@ -10,20 +10,20 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||||
"Language-Team: Simplified Chinese <http://translatewiki.net/wiki/Portal:zh-"
|
"Language-Team: Simplified Chinese <http://translatewiki.net/wiki/Portal:zh-"
|
||||||
"hans>\n"
|
"hans>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
"X-POT-Import-Date: 2011-01-29 22:19:34+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: zh-hans\n"
|
"X-Language-Code: zh-hans\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#: ClientSideShortenPlugin.php:74
|
#: ClientSideShortenPlugin.php:76
|
||||||
msgid ""
|
msgid ""
|
||||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||||
"shorten URLs as they entered, and before the notice is submitted."
|
"shorten URLs as they entered, and before the notice is submitted."
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
26
plugins/EmailSummary/locale/pt/LC_MESSAGES/EmailSummary.po
Normal file
26
plugins/EmailSummary/locale/pt/LC_MESSAGES/EmailSummary.po
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# Translation of StatusNet - EmailSummary to Portuguese (Português)
|
||||||
|
# Exported from translatewiki.net
|
||||||
|
#
|
||||||
|
# Author: Waldir
|
||||||
|
# --
|
||||||
|
# This file is distributed under the same license as the StatusNet package.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: StatusNet - EmailSummary\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2011-03-03 15:58+0000\n"
|
||||||
|
"PO-Revision-Date: 2011-03-03 16:01:52+0000\n"
|
||||||
|
"Language-Team: Portuguese <http://translatewiki.net/wiki/Portal:pt>\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-POT-Import-Date: 2011-02-17 11:29:53+0000\n"
|
||||||
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
|
"X-Language-Code: pt\n"
|
||||||
|
"X-Message-Group: #out-statusnet-plugin-emailsummary\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#: EmailSummaryPlugin.php:120
|
||||||
|
msgid "Send an email summary of the inbox to users."
|
||||||
|
msgstr "Enviar por email um resumo da caixa de entrada aos utilizadores."
|
116
plugins/ExtendedProfile/locale/ExtendedProfile.pot
Normal file
116
plugins/ExtendedProfile/locale/ExtendedProfile.pot
Normal file
@ -0,0 +1,116 @@
|
|||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: extendedprofile.php:49 extendedprofile.php:103
|
||||||
|
msgid "Personal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: extendedprofile.php:52
|
||||||
|
msgid "Full name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: extendedprofile.php:57
|
||||||
|
msgid "Title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: extendedprofile.php:61
|
||||||
|
msgid "Manager"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: extendedprofile.php:66
|
||||||
|
msgid "Location"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: extendedprofile.php:70
|
||||||
|
msgid "Bio"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: extendedprofile.php:75
|
||||||
|
msgid "Tags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: extendedprofile.php:82
|
||||||
|
msgid "Contact"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: extendedprofile.php:85
|
||||||
|
msgid "Phone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: extendedprofile.php:91
|
||||||
|
msgid "IM"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: extendedprofile.php:96
|
||||||
|
msgid "Websites"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: extendedprofile.php:106
|
||||||
|
msgid "Birthday"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: extendedprofile.php:111
|
||||||
|
msgid "Spouse's name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: extendedprofile.php:115
|
||||||
|
msgid "Kids' names"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: extendedprofile.php:120
|
||||||
|
msgid "Work experience"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: extendedprofile.php:124
|
||||||
|
msgid "Employer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: extendedprofile.php:129
|
||||||
|
msgid "Education"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: extendedprofile.php:133
|
||||||
|
msgid "Institution"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ExtendedProfilePlugin.php:40
|
||||||
|
msgid "UI extensions for additional profile fields."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Link description in user account settings menu.
|
||||||
|
#: ExtendedProfilePlugin.php:108
|
||||||
|
msgid "Details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ExtendedProfilePlugin.php:116
|
||||||
|
msgid "More details..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Link title for link on user profile.
|
||||||
|
#: profiledetailaction.php:61
|
||||||
|
msgid "Edit extended profile settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANS: Link text for link on user profile.
|
||||||
|
#: profiledetailaction.php:63
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: profiledetailsettingsaction.php:29
|
||||||
|
msgid "Extended profile settings"
|
||||||
|
msgstr ""
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-02-14 16:01+0000\n"
|
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -18,37 +18,37 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Menu item.
|
#. TRANS: Menu item.
|
||||||
#. TRANS: Menu item tab.
|
#. TRANS: Menu item tab.
|
||||||
#: FacebookBridgePlugin.php:224 FacebookBridgePlugin.php:263
|
#: FacebookBridgePlugin.php:218 FacebookBridgePlugin.php:257
|
||||||
#: FacebookBridgePlugin.php:304
|
#: FacebookBridgePlugin.php:298
|
||||||
msgctxt "MENU"
|
msgctxt "MENU"
|
||||||
msgid "Facebook"
|
msgid "Facebook"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Tooltip for menu item "Facebook".
|
#. TRANS: Tooltip for menu item "Facebook".
|
||||||
#: FacebookBridgePlugin.php:226
|
#: FacebookBridgePlugin.php:220
|
||||||
msgid "Login or register using Facebook"
|
msgid "Login or register using Facebook"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Tooltip for menu item "Facebook".
|
#. TRANS: Tooltip for menu item "Facebook".
|
||||||
#: FacebookBridgePlugin.php:265
|
#: FacebookBridgePlugin.php:259
|
||||||
msgid "Facebook integration configuration"
|
msgid "Facebook integration configuration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Tooltip for menu item "Facebook".
|
#. TRANS: Tooltip for menu item "Facebook".
|
||||||
#. TRANS: Page title for Facebook settings.
|
#. TRANS: Page title for Facebook settings.
|
||||||
#: FacebookBridgePlugin.php:306 actions/facebooksettings.php:105
|
#: FacebookBridgePlugin.php:300 actions/facebooksettings.php:105
|
||||||
msgid "Facebook settings"
|
msgid "Facebook settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: FacebookBridgePlugin.php:570
|
#: FacebookBridgePlugin.php:564
|
||||||
msgid "A plugin for integrating StatusNet with Facebook."
|
msgid "A plugin for integrating StatusNet with Facebook."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/facebookclient.php:760
|
#: lib/facebookclient.php:786
|
||||||
msgid "Your Facebook connection has been removed"
|
msgid "Your Facebook connection has been removed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/facebookclient.php:819
|
#: lib/facebookclient.php:845
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Contact the %s administrator to retrieve your account"
|
msgid "Contact the %s administrator to retrieve your account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - FacebookBridge\n"
|
"Project-Id-Version: StatusNet - FacebookBridge\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-02-14 16:01+0000\n"
|
"POT-Creation-Date: 2011-03-03 15:58+0000\n"
|
||||||
"PO-Revision-Date: 2011-02-14 16:07:52+0000\n"
|
"PO-Revision-Date: 2011-03-03 16:01:56+0000\n"
|
||||||
"Language-Team: Breton <http://translatewiki.net/wiki/Portal:br>\n"
|
"Language-Team: Breton <http://translatewiki.net/wiki/Portal:br>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-29 22:24:13+0000\n"
|
"X-POT-Import-Date: 2011-02-25 23:44:49+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: br\n"
|
"X-Language-Code: br\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-facebookbridge\n"
|
"X-Message-Group: #out-statusnet-plugin-facebookbridge\n"
|
||||||
@ -23,37 +23,37 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Menu item.
|
#. TRANS: Menu item.
|
||||||
#. TRANS: Menu item tab.
|
#. TRANS: Menu item tab.
|
||||||
#: FacebookBridgePlugin.php:224 FacebookBridgePlugin.php:263
|
#: FacebookBridgePlugin.php:218 FacebookBridgePlugin.php:257
|
||||||
#: FacebookBridgePlugin.php:304
|
#: FacebookBridgePlugin.php:298
|
||||||
msgctxt "MENU"
|
msgctxt "MENU"
|
||||||
msgid "Facebook"
|
msgid "Facebook"
|
||||||
msgstr "Facebook"
|
msgstr "Facebook"
|
||||||
|
|
||||||
#. TRANS: Tooltip for menu item "Facebook".
|
#. TRANS: Tooltip for menu item "Facebook".
|
||||||
#: FacebookBridgePlugin.php:226
|
#: FacebookBridgePlugin.php:220
|
||||||
msgid "Login or register using Facebook"
|
msgid "Login or register using Facebook"
|
||||||
msgstr "Kevreañ pe en em enskrivañ dre Facebook"
|
msgstr "Kevreañ pe en em enskrivañ dre Facebook"
|
||||||
|
|
||||||
#. TRANS: Tooltip for menu item "Facebook".
|
#. TRANS: Tooltip for menu item "Facebook".
|
||||||
#: FacebookBridgePlugin.php:265
|
#: FacebookBridgePlugin.php:259
|
||||||
msgid "Facebook integration configuration"
|
msgid "Facebook integration configuration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANS: Tooltip for menu item "Facebook".
|
#. TRANS: Tooltip for menu item "Facebook".
|
||||||
#. TRANS: Page title for Facebook settings.
|
#. TRANS: Page title for Facebook settings.
|
||||||
#: FacebookBridgePlugin.php:306 actions/facebooksettings.php:105
|
#: FacebookBridgePlugin.php:300 actions/facebooksettings.php:105
|
||||||
msgid "Facebook settings"
|
msgid "Facebook settings"
|
||||||
msgstr "Arventennoù Facebook"
|
msgstr "Arventennoù Facebook"
|
||||||
|
|
||||||
#: FacebookBridgePlugin.php:570
|
#: FacebookBridgePlugin.php:564
|
||||||
msgid "A plugin for integrating StatusNet with Facebook."
|
msgid "A plugin for integrating StatusNet with Facebook."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/facebookclient.php:760
|
#: lib/facebookclient.php:786
|
||||||
msgid "Your Facebook connection has been removed"
|
msgid "Your Facebook connection has been removed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/facebookclient.php:819
|
#: lib/facebookclient.php:845
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Contact the %s administrator to retrieve your account"
|
msgid "Contact the %s administrator to retrieve your account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - FacebookBridge\n"
|
"Project-Id-Version: StatusNet - FacebookBridge\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-02-14 16:01+0000\n"
|
"POT-Creation-Date: 2011-03-03 15:58+0000\n"
|
||||||
"PO-Revision-Date: 2011-02-14 16:07:53+0000\n"
|
"PO-Revision-Date: 2011-03-03 16:01:56+0000\n"
|
||||||
"Language-Team: Catalan <http://translatewiki.net/wiki/Portal:ca>\n"
|
"Language-Team: Catalan <http://translatewiki.net/wiki/Portal:ca>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-29 22:24:13+0000\n"
|
"X-POT-Import-Date: 2011-02-25 23:44:49+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: ca\n"
|
"X-Language-Code: ca\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-facebookbridge\n"
|
"X-Message-Group: #out-statusnet-plugin-facebookbridge\n"
|
||||||
@ -23,37 +23,37 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Menu item.
|
#. TRANS: Menu item.
|
||||||
#. TRANS: Menu item tab.
|
#. TRANS: Menu item tab.
|
||||||
#: FacebookBridgePlugin.php:224 FacebookBridgePlugin.php:263
|
#: FacebookBridgePlugin.php:218 FacebookBridgePlugin.php:257
|
||||||
#: FacebookBridgePlugin.php:304
|
#: FacebookBridgePlugin.php:298
|
||||||
msgctxt "MENU"
|
msgctxt "MENU"
|
||||||
msgid "Facebook"
|
msgid "Facebook"
|
||||||
msgstr "Facebook"
|
msgstr "Facebook"
|
||||||
|
|
||||||
#. TRANS: Tooltip for menu item "Facebook".
|
#. TRANS: Tooltip for menu item "Facebook".
|
||||||
#: FacebookBridgePlugin.php:226
|
#: FacebookBridgePlugin.php:220
|
||||||
msgid "Login or register using Facebook"
|
msgid "Login or register using Facebook"
|
||||||
msgstr "Inicieu-hi una sessió o registreu-vos-hi des del Facebook"
|
msgstr "Inicieu-hi una sessió o registreu-vos-hi des del Facebook"
|
||||||
|
|
||||||
#. TRANS: Tooltip for menu item "Facebook".
|
#. TRANS: Tooltip for menu item "Facebook".
|
||||||
#: FacebookBridgePlugin.php:265
|
#: FacebookBridgePlugin.php:259
|
||||||
msgid "Facebook integration configuration"
|
msgid "Facebook integration configuration"
|
||||||
msgstr "Configuració de la integració del Facebook"
|
msgstr "Configuració de la integració del Facebook"
|
||||||
|
|
||||||
#. TRANS: Tooltip for menu item "Facebook".
|
#. TRANS: Tooltip for menu item "Facebook".
|
||||||
#. TRANS: Page title for Facebook settings.
|
#. TRANS: Page title for Facebook settings.
|
||||||
#: FacebookBridgePlugin.php:306 actions/facebooksettings.php:105
|
#: FacebookBridgePlugin.php:300 actions/facebooksettings.php:105
|
||||||
msgid "Facebook settings"
|
msgid "Facebook settings"
|
||||||
msgstr "Paràmetres del Facebook"
|
msgstr "Paràmetres del Facebook"
|
||||||
|
|
||||||
#: FacebookBridgePlugin.php:570
|
#: FacebookBridgePlugin.php:564
|
||||||
msgid "A plugin for integrating StatusNet with Facebook."
|
msgid "A plugin for integrating StatusNet with Facebook."
|
||||||
msgstr "Un connector per integrar l'StatusNet amb el Facebook"
|
msgstr "Un connector per integrar l'StatusNet amb el Facebook"
|
||||||
|
|
||||||
#: lib/facebookclient.php:760
|
#: lib/facebookclient.php:786
|
||||||
msgid "Your Facebook connection has been removed"
|
msgid "Your Facebook connection has been removed"
|
||||||
msgstr "S'ha eliminat la connexió amb el Facebook"
|
msgstr "S'ha eliminat la connexió amb el Facebook"
|
||||||
|
|
||||||
#: lib/facebookclient.php:819
|
#: lib/facebookclient.php:845
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Contact the %s administrator to retrieve your account"
|
msgid "Contact the %s administrator to retrieve your account"
|
||||||
msgstr "Contacteu amb l'administrador de %s per recuperar el vostre compte"
|
msgstr "Contacteu amb l'administrador de %s per recuperar el vostre compte"
|
||||||
|
@ -9,13 +9,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet - FacebookBridge\n"
|
"Project-Id-Version: StatusNet - FacebookBridge\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2011-02-14 16:01+0000\n"
|
"POT-Creation-Date: 2011-03-03 15:58+0000\n"
|
||||||
"PO-Revision-Date: 2011-02-14 16:07:53+0000\n"
|
"PO-Revision-Date: 2011-03-03 16:01:56+0000\n"
|
||||||
"Language-Team: German <http://translatewiki.net/wiki/Portal:de>\n"
|
"Language-Team: German <http://translatewiki.net/wiki/Portal:de>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-POT-Import-Date: 2011-01-29 22:24:13+0000\n"
|
"X-POT-Import-Date: 2011-02-25 23:44:49+0000\n"
|
||||||
"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n"
|
"X-Generator: MediaWiki 1.18alpha (r83149); Translate extension (2011-02-01)\n"
|
||||||
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: de\n"
|
"X-Language-Code: de\n"
|
||||||
"X-Message-Group: #out-statusnet-plugin-facebookbridge\n"
|
"X-Message-Group: #out-statusnet-plugin-facebookbridge\n"
|
||||||
@ -23,37 +23,37 @@ msgstr ""
|
|||||||
|
|
||||||
#. TRANS: Menu item.
|
#. TRANS: Menu item.
|
||||||
#. TRANS: Menu item tab.
|
#. TRANS: Menu item tab.
|
||||||
#: FacebookBridgePlugin.php:224 FacebookBridgePlugin.php:263
|
#: FacebookBridgePlugin.php:218 FacebookBridgePlugin.php:257
|
||||||
#: FacebookBridgePlugin.php:304
|
#: FacebookBridgePlugin.php:298
|
||||||
msgctxt "MENU"
|
msgctxt "MENU"
|
||||||
msgid "Facebook"
|
msgid "Facebook"
|
||||||
msgstr "Facebook"
|
msgstr "Facebook"
|
||||||
|
|
||||||
#. TRANS: Tooltip for menu item "Facebook".
|
#. TRANS: Tooltip for menu item "Facebook".
|
||||||
#: FacebookBridgePlugin.php:226
|
#: FacebookBridgePlugin.php:220
|
||||||
msgid "Login or register using Facebook"
|
msgid "Login or register using Facebook"
|
||||||
msgstr "Über Facebook anmelden oder registrieren"
|
msgstr "Über Facebook anmelden oder registrieren"
|
||||||
|
|
||||||
#. TRANS: Tooltip for menu item "Facebook".
|
#. TRANS: Tooltip for menu item "Facebook".
|
||||||
#: FacebookBridgePlugin.php:265
|
#: FacebookBridgePlugin.php:259
|
||||||
msgid "Facebook integration configuration"
|
msgid "Facebook integration configuration"
|
||||||
msgstr "Konfiguration der Facebook-Integration"
|
msgstr "Konfiguration der Facebook-Integration"
|
||||||
|
|
||||||
#. TRANS: Tooltip for menu item "Facebook".
|
#. TRANS: Tooltip for menu item "Facebook".
|
||||||
#. TRANS: Page title for Facebook settings.
|
#. TRANS: Page title for Facebook settings.
|
||||||
#: FacebookBridgePlugin.php:306 actions/facebooksettings.php:105
|
#: FacebookBridgePlugin.php:300 actions/facebooksettings.php:105
|
||||||
msgid "Facebook settings"
|
msgid "Facebook settings"
|
||||||
msgstr "Facebook-Einstellungen"
|
msgstr "Facebook-Einstellungen"
|
||||||
|
|
||||||
#: FacebookBridgePlugin.php:570
|
#: FacebookBridgePlugin.php:564
|
||||||
msgid "A plugin for integrating StatusNet with Facebook."
|
msgid "A plugin for integrating StatusNet with Facebook."
|
||||||
msgstr "Ein Plugin zur Integration von StatusNet mit Facebook."
|
msgstr "Ein Plugin zur Integration von StatusNet mit Facebook."
|
||||||
|
|
||||||
#: lib/facebookclient.php:760
|
#: lib/facebookclient.php:786
|
||||||
msgid "Your Facebook connection has been removed"
|
msgid "Your Facebook connection has been removed"
|
||||||
msgstr "Ihre Facebook-Verbindung wurde entfernt"
|
msgstr "Ihre Facebook-Verbindung wurde entfernt"
|
||||||
|
|
||||||
#: lib/facebookclient.php:819
|
#: lib/facebookclient.php:845
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Contact the %s administrator to retrieve your account"
|
msgid "Contact the %s administrator to retrieve your account"
|
||||||
msgstr "Kontaktiere den %s-Administrator um dein Konto zurück zu bekommen"
|
msgstr "Kontaktiere den %s-Administrator um dein Konto zurück zu bekommen"
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user