[CORE] Move public resources to a /public directory
Advantages: * Increases security by preventing direct access to file/ * We are careful and have a defined('GNUSOCIAL') || die() to prevent direct access to GS files, but we may miss one or a vendor/extlib may not be as careful * Improves directory structure - It's more natural to physically separate what is public from what are GNU social resources
This commit is contained in:
Binary file not shown.
Before Width: | Height: | Size: 11 KiB |
@@ -1,161 +0,0 @@
|
||||
|
||||
// notices
|
||||
jQuery(document).ready(function($){
|
||||
$('notices_primary').infinitescroll({
|
||||
debug: false,
|
||||
infiniteScroll : !infinite_scroll_on_next_only,
|
||||
nextSelector : 'body#public li.nav_next a,'+
|
||||
'body#all li.nav_next a,'+
|
||||
'body#showstream li.nav_next a,'+
|
||||
'body#replies li.nav_next a,'+
|
||||
'body#showfavorites li.nav_next a,'+
|
||||
'body#showgroup li.nav_next a,'+
|
||||
'body#favorited li.nav_next a',
|
||||
loadingImg : ajax_loader_url,
|
||||
text : "<em>Loading the next set of posts...</em>",
|
||||
donetext : "<em>Congratulations, you\'ve reached the end of the Internet.</em>",
|
||||
navSelector : "#pagination",
|
||||
contentSelector : "#notices_primary ol.notices",
|
||||
itemSelector : "#notices_primary ol.notices > li"
|
||||
},function(){
|
||||
// Reply button and attachment magic need to be set up
|
||||
// for each new notice.
|
||||
// DO NOT run SN.Init.Notices() which will duplicate stuff.
|
||||
$(this).find('.notice').each(function() {
|
||||
SN.U.NoticeReplyTo($(this));
|
||||
SN.U.NoticeWithAttachment($(this));
|
||||
});
|
||||
|
||||
// moving the loaded notices out of their container
|
||||
$('#infscr-loading').remove();
|
||||
var ids_to_append = Array(); var i=0;
|
||||
$.each($('.infscr-pages').children('.notice'),function(){
|
||||
|
||||
// remove dupes
|
||||
if($('.threaded-notices > #' + $(this).attr('id')).length > 0) {
|
||||
$(this).remove();
|
||||
}
|
||||
|
||||
// keep new unique notices
|
||||
else {
|
||||
ids_to_append[i] = $(this).attr('id');
|
||||
i++;
|
||||
}
|
||||
});
|
||||
var loaded_html = $('.infscr-pages').html();
|
||||
$('.infscr-pages').remove();
|
||||
|
||||
// no results
|
||||
if(loaded_html == '') {
|
||||
}
|
||||
// append
|
||||
else {
|
||||
$('#notices_primary ol.notices').append(loaded_html);
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
// users
|
||||
jQuery(document).ready(function($){
|
||||
$('profile_list').infinitescroll({
|
||||
debug: false,
|
||||
infiniteScroll : !infinite_scroll_on_next_only,
|
||||
nextSelector : 'body#subscribers li.nav_next a, body#subscriptions li.nav_next a',
|
||||
loadingImg : ajax_loader_url,
|
||||
text : "<em>Loading the next set of users...</em>",
|
||||
donetext : "<em>Congratulations, you\'ve reached the end of the Internet.</em>",
|
||||
navSelector : "#pagination",
|
||||
contentSelector : "#content_inner ul.profile_list",
|
||||
itemSelector : "#content_inner ul.profile_list > li"
|
||||
},function(){
|
||||
// Reply button and attachment magic need to be set up
|
||||
// for each new notice.
|
||||
// DO NOT run SN.Init.Notices() which will duplicate stuff.
|
||||
$(this).find('.profile').each(function() {
|
||||
SN.U.NoticeReplyTo($(this));
|
||||
SN.U.NoticeWithAttachment($(this));
|
||||
});
|
||||
|
||||
// moving the loaded notices out of their container
|
||||
$('#infscr-loading').remove();
|
||||
var ids_to_append = Array(); var i=0;
|
||||
$.each($('.infscr-pages').children('.profile'),function(){
|
||||
|
||||
// remove dupes
|
||||
if($('.profile_list > #' + $(this).attr('id')).length > 0) {
|
||||
$(this).remove();
|
||||
}
|
||||
|
||||
// keep new unique notices
|
||||
else {
|
||||
ids_to_append[i] = $(this).attr('id');
|
||||
i++;
|
||||
}
|
||||
});
|
||||
var loaded_html = $('.infscr-pages').html();
|
||||
$('.infscr-pages').remove();
|
||||
|
||||
// no results
|
||||
if(loaded_html == '') {
|
||||
}
|
||||
// append
|
||||
else {
|
||||
$('#content_inner ul.profile_list').append(loaded_html);
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
// user directory
|
||||
jQuery(document).ready(function($){
|
||||
$('profile_list').infinitescroll({
|
||||
debug: false,
|
||||
infiniteScroll : !infinite_scroll_on_next_only,
|
||||
nextSelector : 'body#userdirectory li.nav_next a',
|
||||
loadingImg : ajax_loader_url,
|
||||
text : "<em>Loading the next set of users...</em>",
|
||||
donetext : "<em>Congratulations, you\'ve reached the end of the Internet.</em>",
|
||||
navSelector : "#pagination",
|
||||
contentSelector : "#profile_directory table.profile_list tbody",
|
||||
itemSelector : "#profile_directory table.profile_list tbody tr"
|
||||
},function(){
|
||||
// Reply button and attachment magic need to be set up
|
||||
// for each new notice.
|
||||
// DO NOT run SN.Init.Notices() which will duplicate stuff.
|
||||
$(this).find('.profile').each(function() {
|
||||
SN.U.NoticeReplyTo($(this));
|
||||
SN.U.NoticeWithAttachment($(this));
|
||||
});
|
||||
|
||||
// moving the loaded notices out of their container
|
||||
$('#infscr-loading').remove();
|
||||
var ids_to_append = Array(); var i=0;
|
||||
$.each($('.infscr-pages').children('.profile'),function(){
|
||||
|
||||
// remove dupes
|
||||
if($('.profile_list > #' + $(this).attr('id')).length > 0) {
|
||||
$(this).remove();
|
||||
}
|
||||
|
||||
// keep new unique notices
|
||||
else {
|
||||
ids_to_append[i] = $(this).attr('id');
|
||||
i++;
|
||||
}
|
||||
});
|
||||
var loaded_html = $('.infscr-pages').html();
|
||||
$('.infscr-pages').remove();
|
||||
|
||||
// no results
|
||||
if(loaded_html == '') {
|
||||
}
|
||||
// append
|
||||
else {
|
||||
$('#profile_directory table.profile_list tbody').append(loaded_html);
|
||||
}
|
||||
|
||||
});
|
||||
});
|
@@ -1,261 +0,0 @@
|
||||
|
||||
/*!
|
||||
// Infinite Scroll jQuery plugin
|
||||
// copyright Paul Irish, licensed GPL & MIT
|
||||
// version 1.2.090804
|
||||
|
||||
// home and docs: http://www.infinite-scroll.com
|
||||
*/
|
||||
|
||||
// todo: add preloading option.
|
||||
|
||||
;(function($){
|
||||
|
||||
$.fn.infinitescroll = function(options,callback){
|
||||
|
||||
// console log wrapper.
|
||||
function debug(){
|
||||
if (opts.debug) { window.console && console.log.call(console,arguments)}
|
||||
}
|
||||
|
||||
// grab each selector option and see if any fail.
|
||||
function areSelectorsValid(opts){
|
||||
for (var key in opts){
|
||||
if (key.indexOf && (key.indexOf('Selector') != -1) && $(opts[key]).length === 0){
|
||||
debug('Your ' + key + ' found no elements.');
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// find the number to increment in the path.
|
||||
function determinePath(path){
|
||||
|
||||
path.match(relurl) ? path.match(relurl)[2] : path;
|
||||
|
||||
// there is a 2 in the url surrounded by slashes, e.g. /page/2/
|
||||
if ( path.match(/^(.*?)\b2\b(.*?$)/) ){
|
||||
path = path.match(/^(.*?)\b2\b(.*?$)/).slice(1);
|
||||
} else
|
||||
// if there is any 2 in the url at all.
|
||||
if (path.match(/^(.*?)2(.*?$)/)){
|
||||
debug('Trying backup next selector parse technique. Treacherous waters here, matey.');
|
||||
path = path.match(/^(.*?)2(.*?$)/).slice(1);
|
||||
} else {
|
||||
debug('Sorry, we couldn\'t parse your Next (Previous Posts) URL. Verify your the css selector points to the correct A tag. If you still get this error: yell, scream, and kindly ask for help at infinite-scroll.com.');
|
||||
props.isInvalidPage = true; //prevent it from running on this page.
|
||||
}
|
||||
|
||||
return path;
|
||||
}
|
||||
|
||||
|
||||
// 'document' means the full document usually, but sometimes the content of the overflow'd div in local mode
|
||||
function getDocumentHeight(){
|
||||
// weird doubletouch of scrollheight because http://soulpass.com/2006/07/24/ie-and-scrollheight/
|
||||
return opts.localMode ? ($(props.container)[0].scrollHeight && $(props.container)[0].scrollHeight)
|
||||
// needs to be document's height. (not props.container's) html's height is wrong in IE.
|
||||
: $(document).height()
|
||||
}
|
||||
|
||||
|
||||
|
||||
function isNearBottom(opts,props){
|
||||
|
||||
// distance remaining in the scroll
|
||||
// computed as: document height - distance already scroll - viewport height - buffer
|
||||
var pixelsFromWindowBottomToBottom = getDocumentHeight() -
|
||||
(opts.localMode ? $(props.container).scrollTop() :
|
||||
// have to do this bs because safari doesnt report a scrollTop on the html element
|
||||
($(props.container).scrollTop() || $(props.container.ownerDocument.body).scrollTop())) -
|
||||
$(opts.localMode ? props.container : window).height();
|
||||
|
||||
debug('math:',pixelsFromWindowBottomToBottom, props.pixelsFromNavToBottom);
|
||||
|
||||
// if distance remaining in the scroll (including buffer) is less than the orignal nav to bottom....
|
||||
return (pixelsFromWindowBottomToBottom - opts.bufferPx < props.pixelsFromNavToBottom);
|
||||
}
|
||||
|
||||
function showDoneMsg(){
|
||||
props.loadingMsg
|
||||
.find('img').hide()
|
||||
.parent()
|
||||
.find('div').html(opts.donetext).animate({opacity: 1},2000).fadeOut('normal');
|
||||
|
||||
// user provided callback when done
|
||||
opts.errorCallback();
|
||||
}
|
||||
|
||||
function infscrSetup(path,opts,props,callback){
|
||||
|
||||
if (props.isDuringAjax || props.isInvalidPage || props.isDone) return;
|
||||
|
||||
if ( opts.infiniteScroll && !isNearBottom(opts,props) ) return;
|
||||
|
||||
// we dont want to fire the ajax multiple times
|
||||
props.isDuringAjax = true;
|
||||
|
||||
// show the loading message and hide the previous/next links
|
||||
props.loadingMsg.appendTo( opts.contentSelector ).show();
|
||||
if(opts.infiniteScroll) $( opts.navSelector ).hide();
|
||||
|
||||
// increment the URL bit. e.g. /page/3/
|
||||
props.currPage++;
|
||||
|
||||
debug('heading into ajax',path);
|
||||
|
||||
// if we're dealing with a table we can't use DIVs
|
||||
var box = $(opts.contentSelector).is('table') ? $('<tbody/>') : $('<div/>');
|
||||
|
||||
box
|
||||
.attr('id','infscr-page-'+props.currPage)
|
||||
.addClass('infscr-pages')
|
||||
.appendTo( opts.contentSelector )
|
||||
.load( path.join( props.currPage ) + ' ' + opts.itemSelector,null,function(){
|
||||
|
||||
// if we've hit the last page...
|
||||
if (props.isDone){
|
||||
showDoneMsg();
|
||||
return false;
|
||||
|
||||
} else {
|
||||
|
||||
// if it didn't return anything
|
||||
if (box.children().length == 0){
|
||||
// fake an ajaxError so we can quit.
|
||||
$.event.trigger( "ajaxError", [{status:404}] );
|
||||
}
|
||||
|
||||
// fadeout currently makes the <em>'d text ugly in IE6
|
||||
props.loadingMsg.fadeOut('normal' );
|
||||
|
||||
// smooth scroll to ease in the new content
|
||||
if (opts.animate){
|
||||
var scrollTo = $(window).scrollTop() + $('#infscr-loading').height() + opts.extraScrollPx + 'px';
|
||||
$('html,body').animate({scrollTop: scrollTo}, 800,function(){ props.isDuringAjax = false; });
|
||||
}
|
||||
|
||||
// pass in the new DOM element as context for the callback
|
||||
callback.call( box[0] );
|
||||
|
||||
if (!opts.animate) props.isDuringAjax = false; // once the call is done, we can allow it again.
|
||||
}
|
||||
}); // end of load()
|
||||
|
||||
|
||||
} // end of infscrSetup()
|
||||
|
||||
|
||||
|
||||
|
||||
// lets get started.
|
||||
|
||||
var opts = $.extend({}, $.infinitescroll.defaults, options);
|
||||
var props = $.infinitescroll; // shorthand
|
||||
callback = callback || function(){};
|
||||
|
||||
if (!areSelectorsValid(opts)){ return false; }
|
||||
|
||||
// we doing this on an overflow:auto div?
|
||||
props.container = opts.localMode ? this : document.documentElement;
|
||||
|
||||
// contentSelector we'll use for our .load()
|
||||
opts.contentSelector = opts.contentSelector || this;
|
||||
|
||||
|
||||
// get the relative URL - everything past the domain name.
|
||||
var relurl = /(.*?\/\/).*?(\/.*)/;
|
||||
var path = $(opts.nextSelector).attr('href');
|
||||
|
||||
|
||||
if (!path) { debug('Navigation selector not found'); return; }
|
||||
|
||||
// set the path to be a relative URL from root.
|
||||
path = determinePath(path);
|
||||
|
||||
|
||||
// reset scrollTop in case of page refresh:
|
||||
if (opts.localMode) $(props.container)[0].scrollTop = 0;
|
||||
|
||||
// distance from nav links to bottom
|
||||
// computed as: height of the document + top offset of container - top offset of nav link
|
||||
props.pixelsFromNavToBottom = getDocumentHeight() +
|
||||
$(props.container).offset().top -
|
||||
$(opts.navSelector).offset().top;
|
||||
|
||||
// define loading msg
|
||||
props.loadingMsg = $('<div id="infscr-loading" style="text-align: center;"><img alt="Loading..." src="'+
|
||||
opts.loadingImg+'" /><div>'+opts.loadingText+'</div></div>');
|
||||
// preload the image
|
||||
(new Image()).src = opts.loadingImg;
|
||||
|
||||
|
||||
|
||||
// set up our bindings
|
||||
$(document).ajaxError(function(e,xhr,opt){
|
||||
debug('Page not found. Self-destructing...');
|
||||
|
||||
// die if we're out of pages.
|
||||
if (xhr.status == 404){
|
||||
showDoneMsg();
|
||||
props.isDone = true;
|
||||
$(opts.localMode ? this : window).unbind('scroll.infscr');
|
||||
}
|
||||
});
|
||||
|
||||
if(opts.infiniteScroll){
|
||||
// bind scroll handler to element (if its a local scroll) or window
|
||||
$(opts.localMode ? this : window)
|
||||
.bind('scroll.infscr', function(){ infscrSetup(path,opts,props,callback); } )
|
||||
.trigger('scroll.infscr'); // trigger the event, in case it's a short page
|
||||
}else{
|
||||
$(opts.nextSelector).click(
|
||||
function(){
|
||||
infscrSetup(path,opts,props,callback);
|
||||
return false;
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
return this;
|
||||
|
||||
} // end of $.fn.infinitescroll()
|
||||
|
||||
|
||||
|
||||
// options and read-only properties object
|
||||
|
||||
$.infinitescroll = {
|
||||
defaults : {
|
||||
debug : false,
|
||||
infiniteScroll : true,
|
||||
preload : false,
|
||||
nextSelector : "div.navigation a:first",
|
||||
loadingImg : "http://www.infinite-scroll.com/loading.gif",
|
||||
loadingText : "<em>Loading the next set of posts...</em>",
|
||||
donetext : "<em>Congratulations, you've reached the end of the internet.</em>",
|
||||
navSelector : "div.navigation",
|
||||
contentSelector : null, // not really a selector. :) it's whatever the method was called on..
|
||||
extraScrollPx : 150,
|
||||
itemSelector : "div.post",
|
||||
animate : false,
|
||||
localMode : false,
|
||||
bufferPx : 40,
|
||||
errorCallback : function(){}
|
||||
},
|
||||
loadingImg : undefined,
|
||||
loadingMsg : undefined,
|
||||
container : undefined,
|
||||
currPage : 1,
|
||||
currDOMChunk : null, // defined in setup()'s load()
|
||||
isDuringAjax : false,
|
||||
isInvalidPage : false,
|
||||
isDone : false // for when it goes all the way through the archive.
|
||||
};
|
||||
|
||||
|
||||
|
||||
})(jQuery);
|
@@ -1,8 +0,0 @@
|
||||
/*
|
||||
// Infinite Scroll jQuery plugin
|
||||
// copyright Paul Irish, licensed GPL & MIT
|
||||
// version 1.2.090804
|
||||
|
||||
// home and docs: http://www.infinite-scroll.com
|
||||
*/
|
||||
(function(A){A.fn.infinitescroll=function(N,L){function E(){if(B.debug){window.console&&console.log.call(console,arguments)}}function G(P){for(var O in P){if(O.indexOf&&O.indexOf("Selector")&&A(P[O]).length===0){E("Your "+O+" found no elements.");return false}return true}}function K(O){O.match(C)?O.match(C)[2]:O;if(O.match(/^(.*?)\b2\b(.*?$)/)){O=O.match(/^(.*?)\b2\b(.*?$)/).slice(1)}else{if(O.match(/^(.*?)2(.*?$)/)){E("Trying backup next selector parse technique. Treacherous waters here, matey.");O=O.match(/^(.*?)2(.*?$)/).slice(1)}else{E("Sorry, we couldn't parse your Next (Previous Posts) URL. Verify your the css selector points to the correct A tag. If you still get this error: yell, scream, and kindly ask for help at infinite-scroll.com.");H.isInvalidPage=true}}return O}function I(){return B.localMode?(A(H.container)[0].scrollHeight&&A(H.container)[0].scrollHeight):A(document).height()}function F(Q,P){var O=I()-(Q.localMode?A(P.container).scrollTop():(A(P.container).scrollTop()||A(P.container.ownerDocument.body).scrollTop()))-A(Q.localMode?P.container:window).height();E("math:",O,P.pixelsFromNavToBottom);return(O-Q.bufferPx<P.pixelsFromNavToBottom)}function J(){H.loadingMsg.find("img").hide().parent().find("div").html(B.donetext).animate({opacity:1},2000).fadeOut("normal");B.errorCallback()}function D(R,Q,O,S){if(O.isDuringAjax||O.isInvalidPage||O.isDone){return }if(!F(Q,O)){return }O.isDuringAjax=true;O.loadingMsg.appendTo(Q.contentSelector).show();A(Q.navSelector).hide();O.currPage++;E("heading into ajax",R);var P=A(Q.contentSelector).is("table")?A("<tbody/>"):A("<div/>");P.attr("id","infscr-page-"+O.currPage).addClass("infscr-pages").appendTo(Q.contentSelector).load(R.join(O.currPage)+" "+Q.itemSelector,null,function(){if(O.isDone){J();return false}else{if(P.children().length==0){A.event.trigger("ajaxError",[{status:404}])}O.loadingMsg.fadeOut("normal");if(Q.animate){var T=A(window).scrollTop()+A("#infscr-loading").height()+Q.extraScrollPx+"px";A("html,body").animate({scrollTop:T},800,function(){O.isDuringAjax=false})}S.call(P[0]);if(!Q.animate){O.isDuringAjax=false}}})}var B=A.extend({},A.infinitescroll.defaults,N);var H=A.infinitescroll;L=L||function(){};if(!G(B)){return false}H.container=B.localMode?this:document.documentElement;B.contentSelector=B.contentSelector||this;var C=/(.*?\/\/).*?(\/.*)/;var M=A(B.nextSelector).attr("href");if(!M){E("Navigation selector not found");return }M=K(M);if(B.localMode){A(H.container)[0].scrollTop=0}H.pixelsFromNavToBottom=I()+A(H.container).offset().top-A(B.navSelector).offset().top;H.loadingMsg=A('<div id="infscr-loading" style="text-align: center;"><img alt="Loading..." src="'+B.loadingImg+'" /><div>'+B.loadingText+"</div></div>");(new Image()).src=B.loadingImg;A(document).ajaxError(function(P,Q,O){E("Page not found. Self-destructing...");if(Q.status==404){J();H.isDone=true;A(B.localMode?this:window).unbind("scroll.infscr")}});A(B.localMode?this:window).bind("scroll.infscr",function(){D(M,B,H,L)}).trigger("scroll.infscr");return this};A.infinitescroll={defaults:{debug:false,preload:false,nextSelector:"div.navigation a:first",loadingImg:"http://www.infinite-scroll.com/loading.gif",loadingText:"<em>Loading the next set of posts...</em>",donetext:"<em>Congratulations, you've reached the end of the internet.</em>",navSelector:"div.navigation",contentSelector:null,extraScrollPx:150,itemSelector:"div.post",animate:false,localMode:false,bufferPx:40,errorCallback:function(){}},loadingImg:undefined,loadingMsg:undefined,container:undefined,currPage:1,currDOMChunk:null,isDuringAjax:false,isInvalidPage:false,isDone:false}})(jQuery);
|
@@ -1,27 +0,0 @@
|
||||
# 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: 2019-06-08 18:20+0100\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"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:54
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Afrikaans (http://www.transifex.com/gnu-social/gnu-social/language/af/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: af\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/gnu-social/gnu-social/language/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Arabic (Egypt) (http://www.transifex.com/gnu-social/gnu-social/language/ar_EG/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ar_EG\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Asturian (http://www.transifex.com/gnu-social/gnu-social/language/ast/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ast\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Belarusian (Tarask) (http://www.transifex.com/gnu-social/gnu-social/language/be@tarask/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: be@tarask\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bulgarian (http://www.transifex.com/gnu-social/gnu-social/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Bengali (India) (http://www.transifex.com/gnu-social/gnu-social/language/bn_IN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: bn_IN\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Breton (http://www.transifex.com/gnu-social/gnu-social/language/br/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: br\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/gnu-social/gnu-social/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/gnu-social/gnu-social/language/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/gnu-social/gnu-social/language/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:43+0000\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: German (http://www.transifex.com/gnu-social/gnu-social/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "Infinite Scroll fügt die folgende Funktionalität zu deiner StatusNet-Installation hinzu: Wenn ein Benutzer Richtung Seitenende scrollt, wird die nächste Nachrichtenseite automatisch geladen und angefügt. Das bedeutet, dass du nie „Nächste Seite“ klicken musst, was die Attraktivität dramatisch erhöht."
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/gnu-social/gnu-social/language/el/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: el\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,28 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
# Luke Hollins <luke@farcry.ca>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-03-07 19:41+0000\n"
|
||||
"Last-Translator: Luke Hollins <luke@farcry.ca>\n"
|
||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/gnu-social/gnu-social/language/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: en_GB\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "Infinite Scroll adds the following functionality to your StatusNet installation: When a user scrolls towards the bottom of the page, the next page of notices is automatically retrieved and appended. This means they never need to click \"Next Page\", which dramatically increases stickiness."
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Esperanto (http://www.transifex.com/gnu-social/gnu-social/language/eo/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eo\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,28 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
# Juan Riquelme González <soulchainer@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-27 14:21+0000\n"
|
||||
"Last-Translator: Juan Riquelme González <soulchainer@gmail.com>\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/gnu-social/gnu-social/language/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "Infinite Scroll añade la función «Desplazamiento infinito» a tu instalación GNU social. Con ella activada, cuando un usuario alcanza el final de la página actual, se carga y añade inmediatamente la página siguiente (de existir). Así, no se fuerza al usuario a clicar continuamente en un botón si quiere cargar más contenido, lo que mejora la navegabilidad e incrementa la capacidad del sitio para retener su atención."
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2011 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:43+0000\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/gnu-social/gnu-social/language/eu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: eu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "Infinite Scroll pluginak scrollarekin behera egin einean orria luzatzen du ohar zaharrak azpikaldean gehituz, \"Hurrengo Orria\" linka ezabatzen du aldi berean."
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Persian (http://www.transifex.com/gnu-social/gnu-social/language/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Finnish (http://www.transifex.com/gnu-social/gnu-social/language/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:43+0000\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: French (http://www.transifex.com/gnu-social/gnu-social/language/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "InfiniteScroll ajoute la fonctionnalité suivante à votre installation StatusNet : lorsqu’un utilisateur fait défiler la page jusqu’à la fin, la page d’avis suivante est automatiquement téléchargée et ajoutée à la suite. Ceci signifie que l’utilisateur n’a plus besoin de cliquer sur le bouton « Page suivante », ce qui augmente considérablement l’adhérence de l’utilisateur."
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Friulian (http://www.transifex.com/gnu-social/gnu-social/language/fur/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: fur\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2011 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:43+0000\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: Galician (http://www.transifex.com/gnu-social/gnu-social/language/gl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "Infinite Scroll engade a seguinte funcionalizade á súa instalación de StatusNet: Cando un usuario se despraza ata o pé da páxina, recupérase e engádese a seguinte páxina de notas. Isto significa que non é necesario premer en \"Páxina seguinte\", algo que aumenta considerablemente a capacidade de retención."
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:43+0000\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: Hebrew (http://www.transifex.com/gnu-social/gnu-social/language/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "Infinite Scroll (גלילה אינסופית) מוסיפה את התכונות הבאות להתקנת ה־StatusNet שלך: כאשר משתמש גולל אל עבר תחתית הדף, דף העדכונים הבא נטען ונוסף אוטומטית. משמעות הדבר היא שאין על המשתמשים ללחוץ על \"הדף הבא\", מה שמגביר את תחושת הדבקות בצורה דרמטית."
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Upper Sorbian (http://www.transifex.com/gnu-social/gnu-social/language/hsb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: hsb\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/gnu-social/gnu-social/language/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Armenian (Armenia) (http://www.transifex.com/gnu-social/gnu-social/language/hy_AM/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: hy_AM\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:43+0000\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: Interlingua (http://www.transifex.com/gnu-social/gnu-social/language/ia/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ia\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "Infinite Scroll adde le sequente functionalitate a tu installation de StatusNet: Quando un usator face rolar le pagina verso le fundo, le sequente pagina de notas es automaticamente recuperate e adjungite. Isto significa que ille nunquam ha besonio de cliccar super \"Pagina sequente\", lo que augmenta dramaticamente le adherentia."
|
@@ -1,28 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
# zk <zamani.karmana@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-05-28 15:50+0000\n"
|
||||
"Last-Translator: zk <zamani.karmana@gmail.com>\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/gnu-social/gnu-social/language/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "Infinite Scroll menambahkan fungsi berikut ke pemasangan StatusNet anda: Ketika seorang pengguna menggulir ke bawah halaman, halaman pemberitahuan selanjutnya secara otomatis diambil dan ditambahkan. Ini berarti mereka tidak perlu menekan \"Halaman Selanjutnya\", yang akan meningkatkan kelekatan."
|
@@ -1,29 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
# Ciencisto Dementa <maliktunga@users.noreply.github.com>, 2015
|
||||
# William <fxinkeo@mail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-06-16 22:00+0000\n"
|
||||
"Last-Translator: Ciencisto Dementa <maliktunga@users.noreply.github.com>\n"
|
||||
"Language-Team: Ido (http://www.transifex.com/gnu-social/gnu-social/language/io/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: io\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "Infinite Scroll adjuntas la sequanta funciono a vua instaluro GNU social: Kande uzanto iras vers la fundo di la pagino, la sequanta pagino di avizi esas automatale riganis ed adjuntis. Ico signifikas ke li nulatempe mustas pulsar \"Sequanta pagino\", quo ya augmentas adheremeso."
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Icelandic (http://www.transifex.com/gnu-social/gnu-social/language/is/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: is\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2012 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:43+0000\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/gnu-social/gnu-social/language/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "InfiniteScroll aggiunge le seguenti funzionalità alla vostra installazione di StatusNet: quando un utente scorre verso il fondo della pagina, la pagina delle comunicazioni seguenti è automaticamente recuperata e messa di seguito. Questo significa che gli utenti non necessitano di cliccare su \"Pagina seguente\", che aumenta considerevolmente la concentrazione dell'utilizzatore"
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:43+0000\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: Japanese (http://www.transifex.com/gnu-social/gnu-social/language/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "無限スクロールは、StatusNetのインストールに次の機能を追加します:ユーザーがページの最後までスクロースしたとき、次のページの通知が自動的に取得され追加されます。これはつまり、「次のページ」をクリックする必要がなく、手間を劇的に改善します。"
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Georgian (http://www.transifex.com/gnu-social/gnu-social/language/ka/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ka\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Korean (http://www.transifex.com/gnu-social/gnu-social/language/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Colognian (http://www.transifex.com/gnu-social/gnu-social/language/ksh/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ksh\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==0) ? 0 : (n==1) ? 1 : 2;\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Luxembourgish (http://www.transifex.com/gnu-social/gnu-social/language/lb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: lb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Lithuanian (http://www.transifex.com/gnu-social/gnu-social/language/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-07 09:39+0000\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: Latvian (http://www.transifex.com/gnu-social/gnu-social/language/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Malagasy (http://www.transifex.com/gnu-social/gnu-social/language/mg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: mg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:43+0000\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: Macedonian (http://www.transifex.com/gnu-social/gnu-social/language/mk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: mk\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "„Бесконечно лизгање“ ја додава следнава функција во Вашата инсталација на StatusNet: Кога еден корисник лизга кон дното на страницата, следната страница автоматски се појавува во продолжение. Со ова се отстранува потребата од стискање на „Следна страница“, што значително ја зголемува лепливоста."
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Malayalam (http://www.transifex.com/gnu-social/gnu-social/language/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ml\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Malay (http://www.transifex.com/gnu-social/gnu-social/language/ms/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ms\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Burmese (http://www.transifex.com/gnu-social/gnu-social/language/my/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: my\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:43+0000\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: Norwegian Bokmål (http://www.transifex.com/gnu-social/gnu-social/language/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "Infinite Scroll legger til følgende funksjonalitet til din StatusNet-installasjon: Når en bruker ruller mot bunnen av siden hentes den neste siden med notiser og legges til automatisk. Dette betyr at de aldri trenger å klikke «Neste side». Dette øker «stickiness» dramatisk."
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-07 09:30+0000\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: Nepali (http://www.transifex.com/gnu-social/gnu-social/language/ne/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ne\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:43+0000\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: Dutch (http://www.transifex.com/gnu-social/gnu-social/language/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "Oneindig scrollen (Infinite Scroll) maakt het mogelijk om in een StatusNet-site naar onderaan de pagina te scrollen en dan automatisch de volgende pagina te zien laden. Een gebruiker hoeft dus nooit meer op \"Volgende pagina\" te klikken zodat ze langers op de site blijven."
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Norwegian Nynorsk (http://www.transifex.com/gnu-social/gnu-social/language/nn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: nn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Polish (http://www.transifex.com/gnu-social/gnu-social/language/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Portuguese (http://www.transifex.com/gnu-social/gnu-social/language/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:43+0000\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/gnu-social/gnu-social/language/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "Infinite Scroll adiciona a seguinte funcionalidade a sua instalação StatusNet: Quando um usuário se desloca para o final da página, a próxima página de mensagens é recuperada e adicionada automaticamente. Isto significa que não será necessário clicar em \"Próxima página\", que aumenta drasticamente a capacidade de retenção de usuários."
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Romanian (Romania) (http://www.transifex.com/gnu-social/gnu-social/language/ro_RO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ro_RO\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:43+0000\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: Russian (http://www.transifex.com/gnu-social/gnu-social/language/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "Бесконечная прокрутка добавляет следующую функциональность вашему сайту StatusNet: Когда пользователь прокручивает страницу уведомлений до самого низа, следующая страница уведомлений автоматически запрашивается и добавлятся. Это значит, что вам никогда не прийдётся нажимать кнопку \"Следующая страница\", что резко увеличивает клейкость."
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Slovenian (http://www.transifex.com/gnu-social/gnu-social/language/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Serbian (http://www.transifex.com/gnu-social/gnu-social/language/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: sr\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"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Swedish (http://www.transifex.com/gnu-social/gnu-social/language/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-07 08:48+0000\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: Tamil (http://www.transifex.com/gnu-social/gnu-social/language/ta/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ta\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Telugu (http://www.transifex.com/gnu-social/gnu-social/language/te/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: te\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:43+0000\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: Tagalog (http://www.transifex.com/gnu-social/gnu-social/language/tl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: tl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "Nagdaragdag ang Walang Hangganang Balumbon ng sumusunod na tungkulin sa iyong instalasyon ng StatusNet: Kapag ang isang tagagamit ay nagpapadulas papunta sa ilalim ng pahina, ang susunod na pahina ng mga pabatid ay kusang muling nakukuha at nadurugtong. Nangangahulugan ito na hindi nila kailangan kailanman na pindutin ang \"Susunod na Pahina\", na mabisang nagpapataas ng pagkamadikit."
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Turkish (http://www.transifex.com/gnu-social/gnu-social/language/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:43+0000\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: Ukrainian (http://www.transifex.com/gnu-social/gnu-social/language/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: uk\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"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "Нескінченна прокрутка сторінки додає наступні функції сайту StatusNet: коли користувач прокручує сторінку до самого її низу, дописи з наступної сторінки додаються автоматично. Це означає, що вам не доведеться натискати «Назад» (до попередньої сторінки), аби переглянути повідомлення."
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Urdu (Pakistan) (http://www.transifex.com/gnu-social/gnu-social/language/ur_PK/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ur_PK\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Vietnamese (http://www.transifex.com/gnu-social/gnu-social/language/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Chinese (http://www.transifex.com/gnu-social/gnu-social/language/zh/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: zh\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2010 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:43+0000\n"
|
||||
"Last-Translator: digitaldreamer <digitaldreamer@email.cz>\n"
|
||||
"Language-Team: Chinese (China) (http://www.transifex.com/gnu-social/gnu-social/language/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr "无限滚动(Infinite Scroll)给你的 StatusNet 网站增加了这些功能:当用户滚动页面到底部的时候,将自动获取下一页的消息并追加显示出来。这样用户就不用再去点击“下一页”按钮了,大大的增加了黏贴度。"
|
@@ -1,27 +0,0 @@
|
||||
# Translation file for GNU social - the free software social networking platform
|
||||
# Copyright (C) 2015 - 2019 Free Software Foundation, Inc http://www.fsf.org
|
||||
# This file is under https://www.gnu.org/licenses/agpl v3 or later
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: GNU social\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-02-02 17:47+0100\n"
|
||||
"PO-Revision-Date: 2015-02-06 16:29+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/gnu-social/gnu-social/language/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. TRANS: Plugin dscription.
|
||||
#: InfiniteScrollPlugin.php:60
|
||||
msgid ""
|
||||
"Infinite Scroll adds the following functionality to your StatusNet "
|
||||
"installation: When a user scrolls towards the bottom of the page, the next "
|
||||
"page of notices is automatically retrieved and appended. This means they "
|
||||
"never need to click \"Next Page\", which dramatically increases stickiness."
|
||||
msgstr ""
|
Reference in New Issue
Block a user