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',
|
||||
CommandResult: 'command_result',
|
||||
FormNotice: 'form_notice',
|
||||
NoticeDataText: 'notice_data-text',
|
||||
NoticeTextCount: 'notice_text-count',
|
||||
NoticeInReplyTo: 'notice_in-reply-to',
|
||||
NoticeDataAttach: 'notice_data-attach',
|
||||
NoticeDataAttachSelected: 'notice_data-attach_selected',
|
||||
NoticeActionSubmit: 'notice_action-submit',
|
||||
NoticeLat: 'notice_data-lat',
|
||||
NoticeLon: 'notice_data-lon',
|
||||
NoticeLocationId: 'notice_data-location_id',
|
||||
@ -106,7 +101,7 @@ var SN = { // StatusNet
|
||||
*/
|
||||
FormNoticeEnhancements: function(form) {
|
||||
if (jQuery.data(form[0], 'ElementData') === undefined) {
|
||||
MaxLength = form.find('#'+SN.C.S.NoticeTextCount).text();
|
||||
MaxLength = form.find('.count').text();
|
||||
if (typeof(MaxLength) == 'undefined') {
|
||||
MaxLength = SN.C.I.MaxLength;
|
||||
}
|
||||
@ -114,7 +109,7 @@ var SN = { // StatusNet
|
||||
|
||||
SN.U.Counter(form);
|
||||
|
||||
NDT = form.find('#'+SN.C.S.NoticeDataText);
|
||||
NDT = form.find('[name=status_textarea]');
|
||||
|
||||
NDT.bind('keyup', function(e) {
|
||||
SN.U.Counter(form);
|
||||
@ -132,41 +127,10 @@ var SN = { // StatusNet
|
||||
// Note there's still no event for mouse-triggered 'delete'.
|
||||
NDT.bind('cut', delayedUpdate)
|
||||
.bind('paste', delayedUpdate);
|
||||
|
||||
NDT.bind('keydown', function(e) {
|
||||
SN.U.SubmitOnReturn(e, form);
|
||||
});
|
||||
}
|
||||
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 counter = form.find('#'+SN.C.S.NoticeTextCount);
|
||||
var counter = form.find('.count');
|
||||
|
||||
if (remaining.toString() != counter.text()) {
|
||||
if (!SN.C.I.CounterBlackout || remaining === 0) {
|
||||
@ -224,7 +188,7 @@ var SN = { // StatusNet
|
||||
* @return number of chars
|
||||
*/
|
||||
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',
|
||||
timeout: '60000',
|
||||
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);
|
||||
return false;
|
||||
}
|
||||
form
|
||||
.addClass(SN.C.S.Processing)
|
||||
.find('#'+SN.C.S.NoticeActionSubmit)
|
||||
.find('.submit')
|
||||
.addClass(SN.C.S.Disabled)
|
||||
.attr(SN.C.S.Disabled, SN.C.S.Disabled);
|
||||
|
||||
SN.C.I.NoticeDataGeo.NLat = $('#'+SN.C.S.NoticeLat).val();
|
||||
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');
|
||||
}
|
||||
SN.U.normalizeGeoData(form);
|
||||
|
||||
return true;
|
||||
},
|
||||
error: function (xhr, textStatus, errorThrown) {
|
||||
form
|
||||
.removeClass(SN.C.S.Processing)
|
||||
.find('#'+SN.C.S.NoticeActionSubmit)
|
||||
.find('.submit')
|
||||
.removeClass(SN.C.S.Disabled)
|
||||
.removeAttr(SN.C.S.Disabled, SN.C.S.Disabled);
|
||||
removeFeedback();
|
||||
@ -421,7 +363,7 @@ var SN = { // StatusNet
|
||||
if (parseInt(xhr.status) === 0 || jQuery.inArray(parseInt(xhr.status), SN.C.I.HTTP20x30x) >= 0) {
|
||||
form
|
||||
.resetForm()
|
||||
.find('#'+SN.C.S.NoticeDataAttachSelected).remove();
|
||||
.find('.attach-status').remove();
|
||||
SN.U.FormNoticeEnhancements(form);
|
||||
}
|
||||
else {
|
||||
@ -478,29 +420,56 @@ var SN = { // StatusNet
|
||||
}
|
||||
}
|
||||
form.resetForm();
|
||||
form.find('#'+SN.C.S.NoticeInReplyTo).val('');
|
||||
form.find('#'+SN.C.S.NoticeDataAttachSelected).remove();
|
||||
form.find('[name=inreplyto]').val('');
|
||||
form.find('.attach-status').remove();
|
||||
SN.U.FormNoticeEnhancements(form);
|
||||
}
|
||||
},
|
||||
complete: function(xhr, textStatus) {
|
||||
form
|
||||
.removeClass(SN.C.S.Processing)
|
||||
.find('#'+SN.C.S.NoticeActionSubmit)
|
||||
.find('.submit')
|
||||
.removeAttr(SN.C.S.Disabled)
|
||||
.removeClass(SN.C.S.Disabled);
|
||||
|
||||
$('#'+SN.C.S.NoticeLat).val(SN.C.I.NoticeDataGeo.NLat);
|
||||
$('#'+SN.C.S.NoticeLon).val(SN.C.I.NoticeDataGeo.NLon);
|
||||
if ($('#'+SN.C.S.NoticeLocationNs)) {
|
||||
$('#'+SN.C.S.NoticeLocationNs).val(SN.C.I.NoticeDataGeo.NLNS);
|
||||
$('#'+SN.C.S.NoticeLocationId).val(SN.C.I.NoticeDataGeo.NLID);
|
||||
}
|
||||
$('#'+SN.C.S.NoticeDataGeo).attr('checked', SN.C.I.NoticeDataGeo.NDG);
|
||||
form.find('[name=lat]').val(SN.C.I.NoticeDataGeo.NLat);
|
||||
form.find('[name=lon]').val(SN.C.I.NoticeDataGeo.NLon);
|
||||
form.find('[name=location_ns]').val(SN.C.I.NoticeDataGeo.NLNS);
|
||||
form.find('[name=location_id]').val(SN.C.I.NoticeDataGeo.NLID);
|
||||
form.find('[name=notice_data-geo]').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.
|
||||
*
|
||||
@ -533,7 +502,7 @@ var SN = { // StatusNet
|
||||
* @access private
|
||||
*/
|
||||
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)); });
|
||||
}
|
||||
},
|
||||
@ -556,7 +525,6 @@ var SN = { // StatusNet
|
||||
notice.find('.notice_reply').live('click', function(e) {
|
||||
e.preventDefault();
|
||||
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());
|
||||
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.
|
||||
*
|
||||
@ -739,7 +679,7 @@ var SN = { // StatusNet
|
||||
placeholder.click(function() {
|
||||
SN.U.NoticeInlineReplyTrigger(notice);
|
||||
});
|
||||
placeholder.find('input').val(SN.msg('reply_comment'));
|
||||
placeholder.find('input').val(SN.msg('reply_placeholder'));
|
||||
list.append(placeholder);
|
||||
},
|
||||
|
||||
@ -874,36 +814,34 @@ var SN = { // StatusNet
|
||||
*
|
||||
* This preview box will also allow removing the attachment
|
||||
* prior to posting.
|
||||
*
|
||||
* @param {jQuery} form
|
||||
*/
|
||||
NoticeDataAttach: function() {
|
||||
NDA = $('#'+SN.C.S.NoticeDataAttach);
|
||||
NoticeDataAttach: function(form) {
|
||||
var NDA = form.find('input[type=file]');
|
||||
NDA.change(function(event) {
|
||||
form.find('.attach-status').remove();
|
||||
|
||||
var filename = $(this).val();
|
||||
if (!filename) {
|
||||
// No file -- we've been tricked!
|
||||
$('#'+SN.C.S.NoticeDataAttachSelected).remove();
|
||||
return false;
|
||||
}
|
||||
|
||||
// @fixme appending filename straight in is potentially unsafe
|
||||
S = '<div id="'+SN.C.S.NoticeDataAttachSelected+'" class="'+SN.C.S.Success+'"><code>'+filename+'</code> <button class="close">×</button></div>';
|
||||
NDAS = $('#'+SN.C.S.NoticeDataAttachSelected);
|
||||
if (NDAS.length > 0) {
|
||||
NDAS.replaceWith(S);
|
||||
}
|
||||
else {
|
||||
$('#'+SN.C.S.FormNotice).append(S);
|
||||
}
|
||||
$('#'+SN.C.S.NoticeDataAttachSelected+' button').click(function(){
|
||||
$('#'+SN.C.S.NoticeDataAttachSelected).remove();
|
||||
var attachStatus = $('<div class="attach-status '+SN.C.S.Success+'"><code></code> <button class="close">×</button></div>');
|
||||
attachStatus.find('code').text(filename);
|
||||
attachStatus.find('button').click(function(){
|
||||
attachStatus.remove();
|
||||
NDA.val('');
|
||||
|
||||
return false;
|
||||
});
|
||||
form.append(attachStatus);
|
||||
|
||||
if (typeof this.files == "object") {
|
||||
// Some newer browsers will let us fetch the files for preview.
|
||||
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:
|
||||
* - Opera 10.63, 11 beta (no input.files interface)
|
||||
*
|
||||
* @param {jQuery} form
|
||||
* @param {File} file
|
||||
*
|
||||
* @todo use configured thumbnail size
|
||||
* @todo detect pixel size?
|
||||
* @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 preview = true;
|
||||
|
||||
@ -1005,11 +944,11 @@ var SN = { // StatusNet
|
||||
.attr('alt', tooltip)
|
||||
.attr('src', url)
|
||||
.attr('style', 'height: 120px');
|
||||
$('#'+SN.C.S.NoticeDataAttachSelected).append(img);
|
||||
form.find('.attach-status').append(img);
|
||||
});
|
||||
} else {
|
||||
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
|
||||
* triggering lookups and using the new values.
|
||||
*
|
||||
* @param {jQuery} form
|
||||
*
|
||||
* @fixme tl;dr
|
||||
* @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.
|
||||
*
|
||||
*/
|
||||
NoticeLocationAttach: function() {
|
||||
var NLat = $('#'+SN.C.S.NoticeLat).val();
|
||||
var NLon = $('#'+SN.C.S.NoticeLon).val();
|
||||
var NLNS = $('#'+SN.C.S.NoticeLocationNs).val();
|
||||
var NLID = $('#'+SN.C.S.NoticeLocationId).val();
|
||||
var NLN = $('#'+SN.C.S.NoticeGeoName).text();
|
||||
var NDGe = $('#'+SN.C.S.NoticeDataGeo);
|
||||
NoticeLocationAttach: function(form) {
|
||||
// @fixme this should not be tied to the main notice form, as there may be multiple notice forms...
|
||||
var NLat = form.find('[name=lat]')
|
||||
var NLon = form.find('[name=lon]')
|
||||
var NLNS = form.find('[name=location_ns]').val();
|
||||
var NLID = form.find('[name=location_id]').val();
|
||||
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+']')
|
||||
.attr('title', jQuery.trim($('label[for='+SN.C.S.NoticeDataGeo+']').text()))
|
||||
.removeClass('checked');
|
||||
|
||||
$('#'+SN.C.S.NoticeLat).val('');
|
||||
$('#'+SN.C.S.NoticeLon).val('');
|
||||
$('#'+SN.C.S.NoticeLocationNs).val('');
|
||||
$('#'+SN.C.S.NoticeLocationId).val('');
|
||||
$('#'+SN.C.S.NoticeDataGeo).attr('checked', false);
|
||||
form.find('[name=lat]').val('');
|
||||
form.find('[name=lon]').val('');
|
||||
form.find('[name=location_ns]').val('');
|
||||
form.find('[name=location_id]').val('');
|
||||
form.find('[name=notice_data-geo]').attr('checked', false);
|
||||
|
||||
$.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) {
|
||||
SN.U.NoticeGeoStatus('Looking up place name...');
|
||||
$.getJSON(geocodeURL, data, function(location) {
|
||||
var lns, lid;
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
@ -1068,14 +1018,15 @@ var SN = { // StatusNet
|
||||
NLN_text = location.name;
|
||||
}
|
||||
|
||||
SN.U.NoticeGeoStatus(NLN_text, data.lat, data.lon, location.url);
|
||||
$('label[for='+SN.C.S.NoticeDataGeo+']')
|
||||
.attr('title', NoticeDataGeo_text.ShareDisable + ' (' + NLN_text + ')');
|
||||
|
||||
$('#'+SN.C.S.NoticeLat).val(data.lat);
|
||||
$('#'+SN.C.S.NoticeLon).val(data.lon);
|
||||
$('#'+SN.C.S.NoticeLocationNs).val(lns);
|
||||
$('#'+SN.C.S.NoticeLocationId).val(lid);
|
||||
$('#'+SN.C.S.NoticeDataGeo).attr('checked', true);
|
||||
form.find('[name=lat]').val(data.lat);
|
||||
form.find('[name=lon]').val(data.lon);
|
||||
form.find('[name=location_ns]').val(lns);
|
||||
form.find('[name=location_id]').val(lid);
|
||||
form.find('[name=notice_data-geo]').attr('checked', true);
|
||||
|
||||
var cookieValue = {
|
||||
NLat: data.lat,
|
||||
@ -1114,10 +1065,11 @@ var SN = { // StatusNet
|
||||
|
||||
if ($.cookie(SN.C.S.NoticeDataGeoCookie) === null || $.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
|
||||
if (navigator.geolocation) {
|
||||
SN.U.NoticeGeoStatus('Requesting location from browser...');
|
||||
navigator.geolocation.getCurrentPosition(
|
||||
function(position) {
|
||||
$('#'+SN.C.S.NoticeLat).val(position.coords.latitude);
|
||||
$('#'+SN.C.S.NoticeLon).val(position.coords.longitude);
|
||||
form.find('[name=lat]').val(position.coords.latitude);
|
||||
form.find('[name=lon]').val(position.coords.longitude);
|
||||
|
||||
var data = {
|
||||
lat: position.coords.latitude,
|
||||
@ -1131,10 +1083,11 @@ var SN = { // StatusNet
|
||||
function(error) {
|
||||
switch(error.code) {
|
||||
case error.PERMISSION_DENIED:
|
||||
removeNoticeDataGeo();
|
||||
removeNoticeDataGeo('Location permission denied.');
|
||||
break;
|
||||
case error.TIMEOUT:
|
||||
$('#'+SN.C.S.NoticeDataGeo).attr('checked', false);
|
||||
//$('#'+SN.C.S.NoticeDataGeo).attr('checked', false);
|
||||
removeNoticeDataGeo('Location lookup timeout.');
|
||||
break;
|
||||
}
|
||||
},
|
||||
@ -1164,12 +1117,13 @@ var SN = { // StatusNet
|
||||
else {
|
||||
var cookieValue = JSON.parse($.cookie(SN.C.S.NoticeDataGeoCookie));
|
||||
|
||||
$('#'+SN.C.S.NoticeLat).val(cookieValue.NLat);
|
||||
$('#'+SN.C.S.NoticeLon).val(cookieValue.NLon);
|
||||
$('#'+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS);
|
||||
$('#'+SN.C.S.NoticeLocationId).val(cookieValue.NLID);
|
||||
$('#'+SN.C.S.NoticeDataGeo).attr('checked', cookieValue.NDG);
|
||||
form.find('[name=lat]').val(cookieValue.NLat);
|
||||
form.find('[name=lon]').val(cookieValue.NLon);
|
||||
form.find('[name=location_ns]').val(cookieValue.NLNS);
|
||||
form.find('[name=location_id]').val(cookieValue.NLID);
|
||||
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+']')
|
||||
.attr('title', NoticeDataGeo_text.ShareDisable + ' (' + cookieValue.NLN + ')')
|
||||
.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.
|
||||
*
|
||||
@ -1335,14 +1325,13 @@ var SN = { // StatusNet
|
||||
*/
|
||||
NoticeForm: function() {
|
||||
if ($('body.user_in').length > 0) {
|
||||
SN.U.NoticeLocationAttach();
|
||||
|
||||
$('.'+SN.C.S.FormNotice).each(function() {
|
||||
SN.U.FormNoticeXHR($(this));
|
||||
SN.U.FormNoticeEnhancements($(this));
|
||||
var form = $(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)) &&
|
||||
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();
|
||||
// Frame-busting code to avoid clickjacking attacks.
|
||||
$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');
|
||||
|
||||
// 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.
|
||||
$messages['reply_comment'] = _m('Add a comment...');
|
||||
$messages['reply_placeholder'] = _m('Write a reply...');
|
||||
|
||||
$messages = array_merge($messages, $this->getScriptMessages());
|
||||
|
||||
|
@ -63,6 +63,7 @@ $default =
|
||||
'use_x_sendfile' => false,
|
||||
'notice' => null, // site wide notice text
|
||||
'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' =>
|
||||
array('database' => 'YOU HAVE TO SET THIS IN config.php',
|
||||
|
@ -163,8 +163,7 @@ class MessageForm extends Form
|
||||
|
||||
if ($contentLimit > 0) {
|
||||
$this->out->element('span',
|
||||
array('id' => 'notice_text-count',
|
||||
'class' => 'form_note'),
|
||||
array('class' => 'count'),
|
||||
$contentLimit);
|
||||
}
|
||||
}
|
||||
|
@ -183,8 +183,7 @@ class NoticeForm extends Form
|
||||
|
||||
if ($contentLimit > 0) {
|
||||
$this->out->element('span',
|
||||
array('id' => 'notice_text-count',
|
||||
'class' => 'form_note'),
|
||||
array('class' => 'count'),
|
||||
$contentLimit);
|
||||
}
|
||||
|
||||
|
@ -267,7 +267,7 @@ class ThreadedNoticeListMoreItem extends NoticeListItem
|
||||
$notice = new Notice();
|
||||
$notice->conversation = $id;
|
||||
$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);
|
||||
|
||||
|
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 ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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 ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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 ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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 ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -16,20 +16,20 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: BitlyUrlPlugin.php:48
|
||||
#: BitlyUrlPlugin.php:46
|
||||
msgid "You must specify a serviceUrl for bit.ly shortening."
|
||||
msgstr ""
|
||||
|
||||
#: BitlyUrlPlugin.php:175
|
||||
#: BitlyUrlPlugin.php:173
|
||||
#, php-format
|
||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||
msgstr ""
|
||||
|
||||
#: BitlyUrlPlugin.php:216
|
||||
#: BitlyUrlPlugin.php:214
|
||||
msgid "bit.ly"
|
||||
msgstr ""
|
||||
|
||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
||||
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||
msgid "bit.ly URL shortening"
|
||||
msgstr ""
|
||||
|
||||
|
@ -10,35 +10,35 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:40+0000\n"
|
||||
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
||||
"net/wiki/Portal:be-tarask>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-02-17 11:29:48+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: be-tarask\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\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."
|
||||
msgstr "Вам неабходна пазначыць serviceUrl для сэрвісу скарачэньняў bit.ly."
|
||||
|
||||
#: BitlyUrlPlugin.php:175
|
||||
#: BitlyUrlPlugin.php:173
|
||||
#, php-format
|
||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||
msgstr ""
|
||||
"Выкарыстаньне сэрвісу скарачэньня URL-адрасоў <a href=\"http://%1$s/\">%1$s</"
|
||||
"a>."
|
||||
|
||||
#: BitlyUrlPlugin.php:216
|
||||
#: BitlyUrlPlugin.php:214
|
||||
msgid "bit.ly"
|
||||
msgstr "bit.ly"
|
||||
|
||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
||||
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||
msgid "bit.ly URL shortening"
|
||||
msgstr "Скарачэньне URL-адрасоў bit.ly"
|
||||
|
||||
|
@ -9,33 +9,33 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-02-17 10:25+0000\n"
|
||||
"PO-Revision-Date: 2011-02-17 10:27:59+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:40+0000\n"
|
||||
"Language-Team: Catalan <http://translatewiki.net/wiki/Portal:ca>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-29 22:19:24+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r82325); Translate extension (2011-02-01)\n"
|
||||
"X-POT-Import-Date: 2011-02-17 11:29:48+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: ca\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\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."
|
||||
msgstr "Heu d'especificar un URL de servei per a l'escurçament de bit.ly"
|
||||
|
||||
#: BitlyUrlPlugin.php:175
|
||||
#: BitlyUrlPlugin.php:173
|
||||
#, php-format
|
||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||
msgstr ""
|
||||
"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"
|
||||
msgstr "bit.ly"
|
||||
|
||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
||||
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||
msgid "bit.ly URL shortening"
|
||||
msgstr "Escurçament d'URL bit.ly"
|
||||
|
||||
|
@ -10,32 +10,32 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:40+0000\n"
|
||||
"Language-Team: German <http://translatewiki.net/wiki/Portal:de>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-02-17 11:29:48+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: de\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\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."
|
||||
msgstr "Du musst eine „serviceUrl“ zur bit.ly-URL-Kürzung angeben."
|
||||
|
||||
#: BitlyUrlPlugin.php:175
|
||||
#: BitlyUrlPlugin.php:173
|
||||
#, php-format
|
||||
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."
|
||||
|
||||
#: BitlyUrlPlugin.php:216
|
||||
#: BitlyUrlPlugin.php:214
|
||||
msgid "bit.ly"
|
||||
msgstr "bit.ly"
|
||||
|
||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
||||
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||
msgid "bit.ly URL shortening"
|
||||
msgstr "bit.ly-URL-Kürzung"
|
||||
|
||||
|
@ -9,34 +9,34 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:40+0000\n"
|
||||
"Language-Team: French <http://translatewiki.net/wiki/Portal:fr>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-02-17 11:29:48+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: fr\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\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."
|
||||
msgstr "Vous devez spécifier un serviceUrl pour le raccourcissement bit.ly."
|
||||
|
||||
#: BitlyUrlPlugin.php:175
|
||||
#: BitlyUrlPlugin.php:173
|
||||
#, php-format
|
||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||
msgstr ""
|
||||
"Utilise le service de raccourcissement d’URL <a href=\"http://%1$s/\">%1$s</"
|
||||
"a>."
|
||||
|
||||
#: BitlyUrlPlugin.php:216
|
||||
#: BitlyUrlPlugin.php:214
|
||||
msgid "bit.ly"
|
||||
msgstr "bit.ly"
|
||||
|
||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
||||
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||
msgid "bit.ly URL shortening"
|
||||
msgstr "Raccourcissement d’URL bit.ly"
|
||||
|
||||
|
@ -9,34 +9,34 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:40+0000\n"
|
||||
"Language-Team: Galician <http://translatewiki.net/wiki/Portal:gl>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-02-17 11:29:48+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: gl\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\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."
|
||||
msgstr ""
|
||||
|
||||
#: BitlyUrlPlugin.php:175
|
||||
#: BitlyUrlPlugin.php:173
|
||||
#, php-format
|
||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||
msgstr ""
|
||||
"Emprega o servizo de abreviación de enderezos URL <a href=\"http://%1$s/\">%1"
|
||||
"$s</a>."
|
||||
|
||||
#: BitlyUrlPlugin.php:216
|
||||
#: BitlyUrlPlugin.php:214
|
||||
msgid "bit.ly"
|
||||
msgstr ""
|
||||
|
||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
||||
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||
msgid "bit.ly URL shortening"
|
||||
msgstr ""
|
||||
|
||||
|
@ -9,32 +9,32 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:40+0000\n"
|
||||
"Language-Team: Interlingua <http://translatewiki.net/wiki/Portal:ia>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-02-17 11:29:48+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: ia\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\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."
|
||||
msgstr "Tu debe specificar un serviceUrl pro accurtamento bit.ly."
|
||||
|
||||
#: BitlyUrlPlugin.php:175
|
||||
#: BitlyUrlPlugin.php:173
|
||||
#, php-format
|
||||
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>."
|
||||
|
||||
#: BitlyUrlPlugin.php:216
|
||||
#: BitlyUrlPlugin.php:214
|
||||
msgid "bit.ly"
|
||||
msgstr "bit.ly"
|
||||
|
||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
||||
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||
msgid "bit.ly URL shortening"
|
||||
msgstr "Accurtamento de URL con bit.ly"
|
||||
|
||||
|
@ -9,34 +9,34 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:40+0000\n"
|
||||
"Language-Team: Macedonian <http://translatewiki.net/wiki/Portal:mk>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-02-17 11:29:48+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: mk\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\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."
|
||||
msgstr "Мора да наведете URL-адреса за скратување со bit.ly."
|
||||
|
||||
#: BitlyUrlPlugin.php:175
|
||||
#: BitlyUrlPlugin.php:173
|
||||
#, php-format
|
||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||
msgstr ""
|
||||
"Користи <a href=\"http://%1$s/\">%1$s</a> - служба за скратување на URL-"
|
||||
"адреса."
|
||||
|
||||
#: BitlyUrlPlugin.php:216
|
||||
#: BitlyUrlPlugin.php:214
|
||||
msgid "bit.ly"
|
||||
msgstr "bit.ly"
|
||||
|
||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
||||
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||
msgid "bit.ly URL shortening"
|
||||
msgstr "Скратување на URL со bit.ly"
|
||||
|
||||
|
@ -9,32 +9,32 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+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"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-02-17 11:29:48+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: no\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\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."
|
||||
msgstr "Du må angi en serviceUrl for bit.ly-forkortelse."
|
||||
|
||||
#: BitlyUrlPlugin.php:175
|
||||
#: BitlyUrlPlugin.php:173
|
||||
#, php-format
|
||||
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>."
|
||||
|
||||
#: BitlyUrlPlugin.php:216
|
||||
#: BitlyUrlPlugin.php:214
|
||||
msgid "bit.ly"
|
||||
msgstr "bit.ly"
|
||||
|
||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
||||
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||
msgid "bit.ly URL shortening"
|
||||
msgstr "bit.ly URL-forkortelse"
|
||||
|
||||
|
@ -9,34 +9,34 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:40+0000\n"
|
||||
"Language-Team: Dutch <http://translatewiki.net/wiki/Portal:nl>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-02-17 11:29:48+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: nl\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\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."
|
||||
msgstr "U moet een serviceUrl opgeven om URL's in te korten via bit.ly."
|
||||
|
||||
#: BitlyUrlPlugin.php:175
|
||||
#: BitlyUrlPlugin.php:173
|
||||
#, php-format
|
||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||
msgstr ""
|
||||
"Gebruikt de dienst <a href=\"http://%1$s/\">%1$s</a> om URL's korter te "
|
||||
"maken."
|
||||
|
||||
#: BitlyUrlPlugin.php:216
|
||||
#: BitlyUrlPlugin.php:214
|
||||
msgid "bit.ly"
|
||||
msgstr "bit.ly"
|
||||
|
||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
||||
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||
msgid "bit.ly URL shortening"
|
||||
msgstr "URL's inkorten via bit.ly"
|
||||
|
||||
|
@ -11,33 +11,33 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:41+0000\n"
|
||||
"Language-Team: Russian <http://translatewiki.net/wiki/Portal:ru>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-02-17 11:29:48+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: ru\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= "
|
||||
"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n"
|
||||
|
||||
#: BitlyUrlPlugin.php:48
|
||||
#: BitlyUrlPlugin.php:46
|
||||
msgid "You must specify a serviceUrl for bit.ly shortening."
|
||||
msgstr "Вы должны указать serviceUrl для bit.ly сокращений."
|
||||
|
||||
#: BitlyUrlPlugin.php:175
|
||||
#: BitlyUrlPlugin.php:173
|
||||
#, php-format
|
||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||
msgstr "Использование службы сокращения URL <a href=\"http://%1$s/\">%1$s</a>."
|
||||
|
||||
#: BitlyUrlPlugin.php:216
|
||||
#: BitlyUrlPlugin.php:214
|
||||
msgid "bit.ly"
|
||||
msgstr "bit.ly"
|
||||
|
||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
||||
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||
msgid "bit.ly URL shortening"
|
||||
msgstr "Сервис сокращения URL bit.ly"
|
||||
|
||||
|
@ -9,35 +9,35 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - BitlyUrl\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:20+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:41+0000\n"
|
||||
"Language-Team: Ukrainian <http://translatewiki.net/wiki/Portal:uk>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:31+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-02-17 11:29:48+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: uk\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-bitlyurl\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= "
|
||||
"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n"
|
||||
|
||||
#: BitlyUrlPlugin.php:48
|
||||
#: BitlyUrlPlugin.php:46
|
||||
msgid "You must specify a serviceUrl for bit.ly shortening."
|
||||
msgstr ""
|
||||
"Ви мусите зазначити URL-адресу для сервісу скорочення URL-адрес bit.ly."
|
||||
|
||||
#: BitlyUrlPlugin.php:175
|
||||
#: BitlyUrlPlugin.php:173
|
||||
#, php-format
|
||||
msgid "Uses <a href=\"http://%1$s/\">%1$s</a> URL-shortener service."
|
||||
msgstr ""
|
||||
"Використання <a href=\"http://%1$s/\">%1$s</a> для скорочення URL-адрес."
|
||||
|
||||
#: BitlyUrlPlugin.php:216
|
||||
#: BitlyUrlPlugin.php:214
|
||||
msgid "bit.ly"
|
||||
msgstr "bit.ly"
|
||||
|
||||
#: BitlyUrlPlugin.php:217 bitlyadminpanelaction.php:54
|
||||
#: BitlyUrlPlugin.php:215 bitlyadminpanelaction.php:54
|
||||
msgid "bit.ly URL shortening"
|
||||
msgstr "Скорочення URL-адрес bit.ly"
|
||||
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -16,7 +16,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: ClientSideShortenPlugin.php:74
|
||||
#: ClientSideShortenPlugin.php:76
|
||||
msgid ""
|
||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||
"shorten URLs as they entered, and before the notice is submitted."
|
||||
|
@ -9,20 +9,20 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:27+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
|
||||
"net/wiki/Portal:be-tarask>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-29 22:19:34+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: be-tarask\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ClientSideShortenPlugin.php:74
|
||||
#: ClientSideShortenPlugin.php:76
|
||||
msgid ""
|
||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||
"shorten URLs as they entered, and before the notice is submitted."
|
||||
|
@ -9,19 +9,19 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||
"Language-Team: Breton <http://translatewiki.net/wiki/Portal:br>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-29 22:19:34+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: br\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: ClientSideShortenPlugin.php:74
|
||||
#: ClientSideShortenPlugin.php:76
|
||||
msgid ""
|
||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||
"shorten URLs as they entered, and before the notice is submitted."
|
||||
|
@ -9,19 +9,19 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||
"Language-Team: German <http://translatewiki.net/wiki/Portal:de>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-29 22:19:34+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: de\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ClientSideShortenPlugin.php:74
|
||||
#: ClientSideShortenPlugin.php:76
|
||||
msgid ""
|
||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||
"shorten URLs as they entered, and before the notice is submitted."
|
||||
|
@ -9,19 +9,19 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||
"Language-Team: Spanish <http://translatewiki.net/wiki/Portal:es>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-29 22:19:34+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: es\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ClientSideShortenPlugin.php:74
|
||||
#: ClientSideShortenPlugin.php:76
|
||||
msgid ""
|
||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||
"shorten URLs as they entered, and before the notice is submitted."
|
||||
|
@ -10,19 +10,19 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||
"Language-Team: French <http://translatewiki.net/wiki/Portal:fr>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-29 22:19:34+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: fr\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#: ClientSideShortenPlugin.php:74
|
||||
#: ClientSideShortenPlugin.php:76
|
||||
msgid ""
|
||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||
"shorten URLs as they entered, and before the notice is submitted."
|
||||
|
@ -9,19 +9,19 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||
"Language-Team: Hebrew <http://translatewiki.net/wiki/Portal:he>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-29 22:19:34+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: he\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ClientSideShortenPlugin.php:74
|
||||
#: ClientSideShortenPlugin.php:76
|
||||
msgid ""
|
||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||
"shorten URLs as they entered, and before the notice is submitted."
|
||||
|
@ -9,19 +9,19 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||
"Language-Team: Interlingua <http://translatewiki.net/wiki/Portal:ia>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-29 22:19:34+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: ia\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ClientSideShortenPlugin.php:74
|
||||
#: ClientSideShortenPlugin.php:76
|
||||
msgid ""
|
||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||
"shorten URLs as they entered, and before the notice is submitted."
|
||||
|
@ -9,19 +9,19 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||
"Language-Team: Indonesian <http://translatewiki.net/wiki/Portal:id>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-29 22:19:34+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: id\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: ClientSideShortenPlugin.php:74
|
||||
#: ClientSideShortenPlugin.php:76
|
||||
msgid ""
|
||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||
"shorten URLs as they entered, and before the notice is submitted."
|
||||
|
@ -9,19 +9,19 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||
"Language-Team: Macedonian <http://translatewiki.net/wiki/Portal:mk>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-29 22:19:34+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: mk\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n"
|
||||
|
||||
#: ClientSideShortenPlugin.php:74
|
||||
#: ClientSideShortenPlugin.php:76
|
||||
msgid ""
|
||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||
"shorten URLs as they entered, and before the notice is submitted."
|
||||
|
@ -9,19 +9,19 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+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"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-29 22:19:34+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: no\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ClientSideShortenPlugin.php:74
|
||||
#: ClientSideShortenPlugin.php:76
|
||||
msgid ""
|
||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||
"shorten URLs as they entered, and before the notice is submitted."
|
||||
|
@ -9,19 +9,19 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||
"Language-Team: Dutch <http://translatewiki.net/wiki/Portal:nl>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-29 22:19:34+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: nl\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ClientSideShortenPlugin.php:74
|
||||
#: ClientSideShortenPlugin.php:76
|
||||
msgid ""
|
||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||
"shorten URLs as they entered, and before the notice is submitted."
|
||||
|
@ -10,20 +10,20 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||
"Language-Team: Russian <http://translatewiki.net/wiki/Portal:ru>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-29 22:19:34+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: ru\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= "
|
||||
"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n"
|
||||
|
||||
#: ClientSideShortenPlugin.php:74
|
||||
#: ClientSideShortenPlugin.php:76
|
||||
msgid ""
|
||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||
"shorten URLs as they entered, and before the notice is submitted."
|
||||
|
@ -9,19 +9,19 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||
"Language-Team: Tagalog <http://translatewiki.net/wiki/Portal:tl>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-29 22:19:34+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: tl\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: ClientSideShortenPlugin.php:74
|
||||
#: ClientSideShortenPlugin.php:76
|
||||
msgid ""
|
||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||
"shorten URLs as they entered, and before the notice is submitted."
|
||||
|
@ -10,20 +10,20 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||
"Language-Team: Ukrainian <http://translatewiki.net/wiki/Portal:uk>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-29 22:19:34+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: uk\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= "
|
||||
"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n"
|
||||
|
||||
#: ClientSideShortenPlugin.php:74
|
||||
#: ClientSideShortenPlugin.php:76
|
||||
msgid ""
|
||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||
"shorten URLs as they entered, and before the notice is submitted."
|
||||
|
@ -10,20 +10,20 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - ClientSideShorten\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-01-29 21:45+0000\n"
|
||||
"PO-Revision-Date: 2011-01-29 21:49:28+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 17:24+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 17:26:48+0000\n"
|
||||
"Language-Team: Simplified Chinese <http://translatewiki.net/wiki/Portal:zh-"
|
||||
"hans>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-14 13:18:35+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r81195); Translate extension (2010-09-17)\n"
|
||||
"X-POT-Import-Date: 2011-01-29 22:19:34+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: zh-hans\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-clientsideshorten\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#: ClientSideShortenPlugin.php:74
|
||||
#: ClientSideShortenPlugin.php:76
|
||||
msgid ""
|
||||
"ClientSideShorten causes the web interface's notice form to automatically "
|
||||
"shorten URLs as they entered, and before the notice is submitted."
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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 ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -18,37 +18,37 @@ msgstr ""
|
||||
|
||||
#. TRANS: Menu item.
|
||||
#. TRANS: Menu item tab.
|
||||
#: FacebookBridgePlugin.php:224 FacebookBridgePlugin.php:263
|
||||
#: FacebookBridgePlugin.php:304
|
||||
#: FacebookBridgePlugin.php:218 FacebookBridgePlugin.php:257
|
||||
#: FacebookBridgePlugin.php:298
|
||||
msgctxt "MENU"
|
||||
msgid "Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Tooltip for menu item "Facebook".
|
||||
#: FacebookBridgePlugin.php:226
|
||||
#: FacebookBridgePlugin.php:220
|
||||
msgid "Login or register using Facebook"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Tooltip for menu item "Facebook".
|
||||
#: FacebookBridgePlugin.php:265
|
||||
#: FacebookBridgePlugin.php:259
|
||||
msgid "Facebook integration configuration"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Tooltip for menu item "Facebook".
|
||||
#. TRANS: Page title for Facebook settings.
|
||||
#: FacebookBridgePlugin.php:306 actions/facebooksettings.php:105
|
||||
#: FacebookBridgePlugin.php:300 actions/facebooksettings.php:105
|
||||
msgid "Facebook settings"
|
||||
msgstr ""
|
||||
|
||||
#: FacebookBridgePlugin.php:570
|
||||
#: FacebookBridgePlugin.php:564
|
||||
msgid "A plugin for integrating StatusNet with Facebook."
|
||||
msgstr ""
|
||||
|
||||
#: lib/facebookclient.php:760
|
||||
#: lib/facebookclient.php:786
|
||||
msgid "Your Facebook connection has been removed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/facebookclient.php:819
|
||||
#: lib/facebookclient.php:845
|
||||
#, php-format
|
||||
msgid "Contact the %s administrator to retrieve your account"
|
||||
msgstr ""
|
||||
|
@ -9,13 +9,13 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - FacebookBridge\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-02-14 16:01+0000\n"
|
||||
"PO-Revision-Date: 2011-02-14 16:07:52+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 15:58+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 16:01:56+0000\n"
|
||||
"Language-Team: Breton <http://translatewiki.net/wiki/Portal:br>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-29 22:24:13+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n"
|
||||
"X-POT-Import-Date: 2011-02-25 23:44:49+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: br\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-facebookbridge\n"
|
||||
@ -23,37 +23,37 @@ msgstr ""
|
||||
|
||||
#. TRANS: Menu item.
|
||||
#. TRANS: Menu item tab.
|
||||
#: FacebookBridgePlugin.php:224 FacebookBridgePlugin.php:263
|
||||
#: FacebookBridgePlugin.php:304
|
||||
#: FacebookBridgePlugin.php:218 FacebookBridgePlugin.php:257
|
||||
#: FacebookBridgePlugin.php:298
|
||||
msgctxt "MENU"
|
||||
msgid "Facebook"
|
||||
msgstr "Facebook"
|
||||
|
||||
#. TRANS: Tooltip for menu item "Facebook".
|
||||
#: FacebookBridgePlugin.php:226
|
||||
#: FacebookBridgePlugin.php:220
|
||||
msgid "Login or register using Facebook"
|
||||
msgstr "Kevreañ pe en em enskrivañ dre Facebook"
|
||||
|
||||
#. TRANS: Tooltip for menu item "Facebook".
|
||||
#: FacebookBridgePlugin.php:265
|
||||
#: FacebookBridgePlugin.php:259
|
||||
msgid "Facebook integration configuration"
|
||||
msgstr ""
|
||||
|
||||
#. TRANS: Tooltip for menu item "Facebook".
|
||||
#. TRANS: Page title for Facebook settings.
|
||||
#: FacebookBridgePlugin.php:306 actions/facebooksettings.php:105
|
||||
#: FacebookBridgePlugin.php:300 actions/facebooksettings.php:105
|
||||
msgid "Facebook settings"
|
||||
msgstr "Arventennoù Facebook"
|
||||
|
||||
#: FacebookBridgePlugin.php:570
|
||||
#: FacebookBridgePlugin.php:564
|
||||
msgid "A plugin for integrating StatusNet with Facebook."
|
||||
msgstr ""
|
||||
|
||||
#: lib/facebookclient.php:760
|
||||
#: lib/facebookclient.php:786
|
||||
msgid "Your Facebook connection has been removed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/facebookclient.php:819
|
||||
#: lib/facebookclient.php:845
|
||||
#, php-format
|
||||
msgid "Contact the %s administrator to retrieve your account"
|
||||
msgstr ""
|
||||
|
@ -9,13 +9,13 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - FacebookBridge\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-02-14 16:01+0000\n"
|
||||
"PO-Revision-Date: 2011-02-14 16:07:53+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 15:58+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 16:01:56+0000\n"
|
||||
"Language-Team: Catalan <http://translatewiki.net/wiki/Portal:ca>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-29 22:24:13+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n"
|
||||
"X-POT-Import-Date: 2011-02-25 23:44:49+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: ca\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-facebookbridge\n"
|
||||
@ -23,37 +23,37 @@ msgstr ""
|
||||
|
||||
#. TRANS: Menu item.
|
||||
#. TRANS: Menu item tab.
|
||||
#: FacebookBridgePlugin.php:224 FacebookBridgePlugin.php:263
|
||||
#: FacebookBridgePlugin.php:304
|
||||
#: FacebookBridgePlugin.php:218 FacebookBridgePlugin.php:257
|
||||
#: FacebookBridgePlugin.php:298
|
||||
msgctxt "MENU"
|
||||
msgid "Facebook"
|
||||
msgstr "Facebook"
|
||||
|
||||
#. TRANS: Tooltip for menu item "Facebook".
|
||||
#: FacebookBridgePlugin.php:226
|
||||
#: FacebookBridgePlugin.php:220
|
||||
msgid "Login or register using Facebook"
|
||||
msgstr "Inicieu-hi una sessió o registreu-vos-hi des del Facebook"
|
||||
|
||||
#. TRANS: Tooltip for menu item "Facebook".
|
||||
#: FacebookBridgePlugin.php:265
|
||||
#: FacebookBridgePlugin.php:259
|
||||
msgid "Facebook integration configuration"
|
||||
msgstr "Configuració de la integració del Facebook"
|
||||
|
||||
#. TRANS: Tooltip for menu item "Facebook".
|
||||
#. TRANS: Page title for Facebook settings.
|
||||
#: FacebookBridgePlugin.php:306 actions/facebooksettings.php:105
|
||||
#: FacebookBridgePlugin.php:300 actions/facebooksettings.php:105
|
||||
msgid "Facebook settings"
|
||||
msgstr "Paràmetres del Facebook"
|
||||
|
||||
#: FacebookBridgePlugin.php:570
|
||||
#: FacebookBridgePlugin.php:564
|
||||
msgid "A plugin for integrating StatusNet with 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"
|
||||
msgstr "S'ha eliminat la connexió amb el Facebook"
|
||||
|
||||
#: lib/facebookclient.php:819
|
||||
#: lib/facebookclient.php:845
|
||||
#, php-format
|
||||
msgid "Contact the %s administrator to retrieve your account"
|
||||
msgstr "Contacteu amb l'administrador de %s per recuperar el vostre compte"
|
||||
|
@ -9,13 +9,13 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet - FacebookBridge\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-02-14 16:01+0000\n"
|
||||
"PO-Revision-Date: 2011-02-14 16:07:53+0000\n"
|
||||
"POT-Creation-Date: 2011-03-03 15:58+0000\n"
|
||||
"PO-Revision-Date: 2011-03-03 16:01:56+0000\n"
|
||||
"Language-Team: German <http://translatewiki.net/wiki/Portal:de>\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-POT-Import-Date: 2011-01-29 22:24:13+0000\n"
|
||||
"X-Generator: MediaWiki 1.18alpha (r82114); Translate extension (2011-02-01)\n"
|
||||
"X-POT-Import-Date: 2011-02-25 23:44:49+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: de\n"
|
||||
"X-Message-Group: #out-statusnet-plugin-facebookbridge\n"
|
||||
@ -23,37 +23,37 @@ msgstr ""
|
||||
|
||||
#. TRANS: Menu item.
|
||||
#. TRANS: Menu item tab.
|
||||
#: FacebookBridgePlugin.php:224 FacebookBridgePlugin.php:263
|
||||
#: FacebookBridgePlugin.php:304
|
||||
#: FacebookBridgePlugin.php:218 FacebookBridgePlugin.php:257
|
||||
#: FacebookBridgePlugin.php:298
|
||||
msgctxt "MENU"
|
||||
msgid "Facebook"
|
||||
msgstr "Facebook"
|
||||
|
||||
#. TRANS: Tooltip for menu item "Facebook".
|
||||
#: FacebookBridgePlugin.php:226
|
||||
#: FacebookBridgePlugin.php:220
|
||||
msgid "Login or register using Facebook"
|
||||
msgstr "Über Facebook anmelden oder registrieren"
|
||||
|
||||
#. TRANS: Tooltip for menu item "Facebook".
|
||||
#: FacebookBridgePlugin.php:265
|
||||
#: FacebookBridgePlugin.php:259
|
||||
msgid "Facebook integration configuration"
|
||||
msgstr "Konfiguration der Facebook-Integration"
|
||||
|
||||
#. TRANS: Tooltip for menu item "Facebook".
|
||||
#. TRANS: Page title for Facebook settings.
|
||||
#: FacebookBridgePlugin.php:306 actions/facebooksettings.php:105
|
||||
#: FacebookBridgePlugin.php:300 actions/facebooksettings.php:105
|
||||
msgid "Facebook settings"
|
||||
msgstr "Facebook-Einstellungen"
|
||||
|
||||
#: FacebookBridgePlugin.php:570
|
||||
#: FacebookBridgePlugin.php:564
|
||||
msgid "A plugin for integrating StatusNet with 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"
|
||||
msgstr "Ihre Facebook-Verbindung wurde entfernt"
|
||||
|
||||
#: lib/facebookclient.php:819
|
||||
#: lib/facebookclient.php:845
|
||||
#, php-format
|
||||
msgid "Contact the %s administrator to retrieve your account"
|
||||
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