Merge branch '0.9.x' into 1.0.x

Conflicts:
	plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po
This commit is contained in:
Brion Vibber 2010-12-16 15:56:19 -08:00
commit e79034e163
1104 changed files with 24017 additions and 10823 deletions

11
js/Makefile Normal file
View File

@ -0,0 +1,11 @@
.fake: all clean
TARGETS=util.min.js
all: $(TARGETS)
clean:
rm -f $(TARGETS)
util.min.js: util.js
yui-compressor $< -o $@

View File

@ -19,7 +19,8 @@
* @package StatusNet
* @author Sarven Capadisli <csarven@status.net>
* @author Evan Prodromou <evan@status.net>
* @copyright 2009 StatusNet, Inc.
* @author Brion Vibber <brion@status.net>
* @copyright 2009,2010 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
@ -33,6 +34,14 @@ var SN = { // StatusNet
HTTP20x30x: [200, 201, 202, 203, 204, 205, 206, 300, 301, 302, 303, 304, 305, 306, 307]
},
/**
* @fixme are these worth the trouble? They seem to mostly just duplicate
* themselves while slightly obscuring the actual selector, so it's hard
* to pop over to the HTML and find something.
*
* In theory, minification could reduce them to shorter variable names,
* but at present that doesn't happen with yui-compressor.
*/
S: { // Selector
Disabled: 'disabled',
Warning: 'warning',
@ -59,7 +68,25 @@ var SN = { // StatusNet
}
},
/**
* Map of localized message strings exported to script from the PHP
* side via Action::getScriptMessages().
*
* Retrieve them via SN.msg(); this array is an implementation detail.
*
* @access private
*/
messages: {},
/**
* Grabs a localized string that's been previously exported to us
* from server-side code via Action::getScriptMessages().
*
* @example alert(SN.msg('coolplugin-failed'));
*
* @param {String} key: string key name to pull from message index
* @return matching localized message string
*/
msg: function(key) {
if (typeof SN.messages[key] == "undefined") {
return '[' + key + ']';
@ -69,6 +96,14 @@ var SN = { // StatusNet
},
U: { // Utils
/**
* Setup function -- DOES NOT trigger actions immediately.
*
* Sets up event handlers on the new notice form.
*
* @param {jQuery} form: jQuery object whose first matching element is the form
* @access private
*/
FormNoticeEnhancements: function(form) {
if (jQuery.data(form[0], 'ElementData') === undefined) {
MaxLength = form.find('#'+SN.C.S.NoticeTextCount).text();
@ -85,6 +120,19 @@ var SN = { // StatusNet
SN.U.Counter(form);
});
var delayedUpdate= function(e) {
// Cut and paste events fire *before* the operation,
// so we need to trigger an update in a little bit.
// This would be so much easier if the 'change' event
// actually fired every time the value changed. :P
window.setTimeout(function() {
SN.U.Counter(form);
}, 50);
};
// Note there's still no event for mouse-triggered 'delete'.
NDT.bind('cut', delayedUpdate)
.bind('paste', delayedUpdate);
NDT.bind('keydown', function(e) {
SN.U.SubmitOnReturn(e, form);
});
@ -98,6 +146,17 @@ var SN = { // StatusNet
}
},
/**
* To be called from keydown event handler on the notice import form.
* Checks if return or enter key was pressed, and if so attempts to
* submit the form and cancel standard processing of the enter key.
*
* @param {Event} event
* @param {jQuery} el: jQuery object whose first element is the notice posting form
*
* @return {boolean} whether to cancel the event? Does this actually pass through?
* @access private
*/
SubmitOnReturn: function(event, el) {
if (event.keyCode == 13 || event.keyCode == 10) {
el.submit();
@ -110,6 +169,20 @@ var SN = { // StatusNet
return true;
},
/**
* To be called from event handlers on the notice import form.
* Triggers an update of the remaining-characters counter.
*
* Additional counter updates will be suppressed during the
* next half-second to avoid flooding the layout engine with
* updates, followed by another automatic check.
*
* The maximum length is pulled from data established by
* FormNoticeEnhancements.
*
* @param {jQuery} form: jQuery object whose first element is the notice posting form
* @access private
*/
Counter: function(form) {
SN.C.I.FormNoticeCurrent = form;
@ -143,10 +216,24 @@ var SN = { // StatusNet
}
},
/**
* Pull the count of characters in the current edit field.
* Plugins replacing the edit control may need to override this.
*
* @param {jQuery} form: jQuery object whose first element is the notice posting form
* @return number of chars
*/
CharacterCount: function(form) {
return form.find('#'+SN.C.S.NoticeDataText).val().length;
},
/**
* Called internally after the counter update blackout period expires;
* runs another update to make sure we didn't miss anything.
*
* @param {jQuery} form: jQuery object whose first element is the notice posting form
* @access private
*/
ClearCounterBlackout: function(form) {
// Allow keyup events to poke the counter again
SN.C.I.CounterBlackout = false;
@ -154,6 +241,22 @@ var SN = { // StatusNet
SN.U.Counter(form);
},
/**
* Grabs form data and submits it asynchronously, with 'ajax=1'
* parameter added to the rest.
*
* If a successful response includes another form, that form
* will be extracted and copied in, replacing the original form.
* If there's no form, the first paragraph will be used.
*
* @fixme can sometimes explode confusingly if returnd data is bogus
* @fixme error handling is pretty vague
* @fixme can't submit file uploads
*
* @param {jQuery} form: jQuery object whose first element is a form
*
* @access public
*/
FormXHR: function(form) {
$.ajax({
type: 'POST',
@ -182,6 +285,33 @@ var SN = { // StatusNet
});
},
/**
* Setup function -- DOES NOT trigger actions immediately.
*
* Sets up event handlers for special-cased async submission of the
* notice-posting form, including some pre-post validation.
*
* Unlike FormXHR() this does NOT submit the form immediately!
* It sets up event handlers so that any method of submitting the
* form (click on submit button, enter, submit() etc) will trigger
* it properly.
*
* Also unlike FormXHR(), this system will use a hidden iframe
* automatically to handle file uploads via <input type="file">
* controls.
*
* @fixme tl;dr
* @fixme vast swaths of duplicate code and really long variable names clutter this function up real bad
* @fixme error handling is unreliable
* @fixme cookieValue is a global variable, but probably shouldn't be
* @fixme saving the location cache cookies should be split out
* @fixme some error messages are hardcoded english: needs i18n
* @fixme special-case for bookmarklet is confusing and uses a global var "self". Is this ok?
*
* @param {jQuery} form: jQuery object whose first element is a form
*
* @access public
*/
FormNoticeXHR: function(form) {
SN.C.I.NoticeDataGeo = {};
form.append('<input type="hidden" name="ajax" value="1"/>');
@ -327,9 +457,17 @@ var SN = { // StatusNet
});
},
/**
* Fetch an XML DOM from an XHR's response data.
*
* Works around unavailable responseXML when document.domain
* has been modified by Meteor or other tools, in some but not
* all browsers.
*
* @param {XMLHTTPRequest} xhr
* @return DOMDocument
*/
GetResponseXML: function(xhr) {
// Work around unavailable responseXML when document.domain
// has been modified by Meteor or other tools.
try {
return xhr.responseXML;
} catch (e) {
@ -337,12 +475,39 @@ var SN = { // StatusNet
}
},
/**
* Setup function -- DOES NOT trigger actions immediately.
*
* Sets up event handlers on all visible notice's reply buttons to
* tweak the new-notice form with needed variables and focus it
* when pushed.
*
* (This replaces the default reply button behavior to submit
* directly to a form which comes back with a specialized page
* with the form data prefilled.)
*
* @access private
*/
NoticeReply: function() {
if ($('#'+SN.C.S.NoticeDataText).length > 0 && $('#content .notice_reply').length > 0) {
$('#content .notice').each(function() { SN.U.NoticeReplyTo($(this)); });
}
},
/**
* Setup function -- DOES NOT trigger actions immediately.
*
* Sets up event handlers on the given notice's reply button to
* tweak the new-notice form with needed variables and focus it
* when pushed.
*
* (This replaces the default reply button behavior to submit
* directly to a form which comes back with a specialized page
* with the form data prefilled.)
*
* @param {jQuery} notice: jQuery object containing one or more notices
* @access private
*/
NoticeReplyTo: function(notice) {
notice.find('.notice_reply').live('click', function() {
var nickname = ($('.author .nickname', notice).length > 0) ? $($('.author .nickname', notice)[0]) : $('.author .nickname.uid');
@ -351,6 +516,16 @@ var SN = { // StatusNet
});
},
/**
* Updates the new notice posting form with bits for replying to the
* given user. Adds replyto parameter to the form, and a "@foo" to the
* text area.
*
* @fixme replyto is a global variable, but probably shouldn't be
*
* @param {String} nick
* @param {String} id
*/
NoticeReplySet: function(nick,id) {
if (nick.match(SN.C.I.PatternUsername)) {
var text = $('#'+SN.C.S.NoticeDataText);
@ -368,11 +543,25 @@ var SN = { // StatusNet
}
},
/**
* Setup function -- DOES NOT apply immediately.
*
* Sets up event handlers for favor/disfavor forms to submit via XHR.
* Uses 'live' rather than 'bind', so applies to future as well as present items.
*/
NoticeFavor: function() {
$('.form_favor').live('click', function() { SN.U.FormXHR($(this)); return false; });
$('.form_disfavor').live('click', function() { SN.U.FormXHR($(this)); return false; });
},
/**
* Setup function -- DOES NOT trigger actions immediately.
*
* Sets up event handlers for repeat forms to toss up a confirmation
* popout before submitting.
*
* Uses 'live' rather than 'bind', so applies to future as well as present items.
*/
NoticeRepeat: function() {
$('.form_repeat').live('click', function(e) {
e.preventDefault();
@ -382,6 +571,22 @@ var SN = { // StatusNet
});
},
/**
* Shows a confirmation dialog box variant of the repeat button form.
* This seems to use a technique where the repeat form contains
* _both_ a standalone button _and_ text and buttons for a dialog.
* The dialog will close after its copy of the form is submitted,
* or if you click its 'close' button.
*
* The dialog is created by duplicating the original form and changing
* its style; while clever, this is hard to generalize and probably
* duplicates a lot of unnecessary HTML output.
*
* @fixme create confirmation dialogs through a generalized interface
* that can be reused instead of hardcoded text and styles.
*
* @param {jQuery} form
*/
NoticeRepeatConfirmation: function(form) {
var submit_i = form.find('.submit');
@ -415,12 +620,28 @@ var SN = { // StatusNet
});
},
/**
* Setup function -- DOES NOT trigger actions immediately.
*
* Goes through all notices currently displayed and sets up attachment
* handling if needed.
*/
NoticeAttachments: function() {
$('.notice a.attachment').each(function() {
SN.U.NoticeWithAttachment($(this).closest('.notice'));
});
},
/**
* Setup function -- DOES NOT trigger actions immediately.
*
* Sets up special attachment link handling if needed. Currently this
* consists only of making the "more" button used for OStatus message
* cropping turn into an auto-expansion button that loads the full
* text from an attachment file.
*
* @param {jQuery} notice
*/
NoticeWithAttachment: function(notice) {
if (notice.find('.attachment').length === 0) {
return;
@ -440,6 +661,17 @@ var SN = { // StatusNet
}
},
/**
* Setup function -- DOES NOT trigger actions immediately.
*
* Sets up event handlers for the file-attachment widget in the
* new notice form. When a file is selected, a box will be added
* below the text input showing the filename and, if supported
* by the browser, a thumbnail preview.
*
* This preview box will also allow removing the attachment
* prior to posting.
*/
NoticeDataAttach: function() {
NDA = $('#'+SN.C.S.NoticeDataAttach);
NDA.change(function() {
@ -554,6 +786,18 @@ var SN = { // StatusNet
}
},
/**
* Setup function -- DOES NOT trigger actions immediately.
*
* Initializes state for the location-lookup features in the
* new-notice form. Seems to set up some event handlers for
* triggering lookups and using the new values.
*
* @fixme tl;dr
* @fixme there's not good visual state update here, so users have a
* hard time figuring out if it's working or fixing if it's wrong.
*
*/
NoticeLocationAttach: function() {
var NLat = $('#'+SN.C.S.NoticeLat).val();
var NLon = $('#'+SN.C.S.NoticeLon).val();
@ -711,6 +955,18 @@ var SN = { // StatusNet
}
},
/**
* Setup function -- DOES NOT trigger actions immediately.
*
* Initializes event handlers for the "Send direct message" link on
* profile pages, setting it up to display a dialog box when clicked.
*
* Unlike the repeat confirmation form, this appears to fetch
* the form _from the original link target_, so the form itself
* doesn't need to be in the current document.
*
* @fixme breaks ability to open link in new window?
*/
NewDirectMessage: function() {
NDM = $('.entity_send-a-message a');
NDM.attr({'href':NDM.attr('href')+'&ajax=1'});
@ -739,6 +995,15 @@ var SN = { // StatusNet
});
},
/**
* Return a date object with the current local time on the
* given year, month, and day.
*
* @param {number} year: 4-digit year
* @param {number} month: 0 == January
* @param {number} day: 1 == 1
* @return {Date}
*/
GetFullYear: function(year, month, day) {
var date = new Date();
date.setFullYear(year, month, day);
@ -746,7 +1011,22 @@ var SN = { // StatusNet
return date;
},
/**
* Some sort of object interface for storing some structured
* information in a cookie.
*
* Appears to be used to save the last-used login nickname?
* That's something that browsers usually take care of for us
* these days, do we really need to do it? Does anything else
* use this interface?
*
* @fixme what is this?
* @fixme should this use non-cookie local storage when available?
*/
StatusNetInstance: {
/**
* @fixme what is this?
*/
Set: function(value) {
var SNI = SN.U.StatusNetInstance.Get();
if (SNI !== null) {
@ -762,6 +1042,9 @@ var SN = { // StatusNet
});
},
/**
* @fixme what is this?
*/
Get: function() {
var cookieValue = $.cookie(SN.C.S.StatusNetInstance);
if (cookieValue !== null) {
@ -770,6 +1053,9 @@ var SN = { // StatusNet
return null;
},
/**
* @fixme what is this?
*/
Delete: function() {
$.cookie(SN.C.S.StatusNetInstance, null);
}
@ -781,6 +1067,9 @@ var SN = { // StatusNet
*
* @fixme this should be done in a saner way, with machine-readable
* info about what page we're looking at.
*
* @param {DOMElement} notice: HTML chunk with formatted notice
* @return boolean
*/
belongsOnTimeline: function(notice) {
var action = $("body").attr('id');
@ -809,6 +1098,14 @@ var SN = { // StatusNet
},
Init: {
/**
* If user is logged in, run setup code for the new notice form:
*
* - char counter
* - AJAX submission
* - location events
* - file upload events
*/
NoticeForm: function() {
if ($('body.user_in').length > 0) {
SN.U.NoticeLocationAttach();
@ -822,6 +1119,12 @@ var SN = { // StatusNet
}
},
/**
* Run setup code for notice timeline views items:
*
* - AJAX submission for fave/repeat/reply (if logged in)
* - Attachment link extras ('more' links)
*/
Notices: function() {
if ($('body.user_in').length > 0) {
SN.U.NoticeFavor();
@ -832,6 +1135,12 @@ var SN = { // StatusNet
SN.U.NoticeAttachments();
},
/**
* Run setup code for user & group profile page header area if logged in:
*
* - AJAX submission for sub/unsub/join/leave/nudge
* - AJAX form popup for direct-message
*/
EntityActions: function() {
if ($('body.user_in').length > 0) {
$('.form_user_subscribe').live('click', function() { SN.U.FormXHR($(this)); return false; });
@ -844,6 +1153,14 @@ var SN = { // StatusNet
}
},
/**
* Run setup code for login form:
*
* - loads saved last-used-nickname from cookie
* - sets event handler to save nickname to cookie on submit
*
* @fixme is this necessary? Browsers do their own form saving these days.
*/
Login: function() {
if (SN.U.StatusNetInstance.Get() !== null) {
var nickname = SN.U.StatusNetInstance.Get().Nickname;
@ -860,6 +1177,13 @@ var SN = { // StatusNet
}
};
/**
* Run initialization functions on DOM-ready.
*
* Note that if we're waiting on other scripts to load, this won't happen
* until that's done. To load scripts asynchronously without delaying setup,
* don't start them loading until after DOM-ready time!
*/
$(document).ready(function(){
if ($('.'+SN.C.S.FormNotice).length > 0) {
SN.Init.NoticeForm();
@ -876,6 +1200,7 @@ $(document).ready(function(){
});
// Formerly in xbImportNode.js
// @fixme put it back there -- since we're minifying we can concat in the makefile now
/* is this stuff defined? */
if (!document.ELEMENT_NODE) {
@ -924,6 +1249,7 @@ document._importNode = function(node, allChildren) {
}
};
// @fixme put this next bit back too -- since we're minifying we can concat in the makefile now
// A shim to implement the W3C Geolocation API Specification using Gears or the Ajax API
if (typeof navigator.geolocation == "undefined" || navigator.geolocation.shim ) { (function(){

2
js/util.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -160,7 +160,16 @@ class Router
static function cacheKey()
{
return Cache::codeKey('router');
$parts = array('router');
// Many router paths depend on this setting.
if (common_config('singleuser', 'enabled')) {
$parts[] = '1user';
} else {
$parts[] = 'multi';
}
return Cache::codeKey(implode(':', $parts));
}
function initialize()

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -12,13 +12,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Core\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-30 20:16+0000\n"
"PO-Revision-Date: 2010-11-30 20:18:06+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:10:54+0000\n"
"Language-Team: Hungarian <http://translatewiki.net/wiki/Portal:hu>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-30 17:54:26+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77503); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-30 20:43:14+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: hu\n"
"X-Message-Group: #out-statusnet-core\n"
@ -90,11 +90,11 @@ msgstr "Hozzáférések beállításainak mentése"
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
#: actions/accessadminpanel.php:193 actions/emailsettings.php:232
#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
#: actions/imsettings.php:187 actions/othersettings.php:134
#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
#: actions/subscriptions.php:246 actions/useradminpanel.php:298
#: actions/subscriptions.php:262 actions/useradminpanel.php:298
#: lib/applicationeditform.php:355 lib/designsettings.php:270
#: lib/groupeditform.php:207
msgctxt "BUTTON"
@ -379,20 +379,38 @@ msgstr "Nem sikerült elmenteni a megjelenítési beállításaid."
msgid "Could not update your design."
msgstr "Nem sikerült frissíteni a megjelenítést."
#: actions/apiatomservice.php:85
#: actions/apiatomservice.php:86
msgid "Main"
msgstr ""
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
#: actions/apiatomservice.php:92 actions/grouprss.php:139
#: actions/apiatomservice.php:93 actions/grouprss.php:139
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
#: lib/atomusernoticefeed.php:68
#, php-format
msgid "%s timeline"
msgstr "%s története"
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr ""
#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
#, fuzzy, php-format
msgid "%s favorites"
msgstr "Kedvencek"
#: actions/apiatomservice.php:123
#, fuzzy, php-format
msgid "%s memberships"
msgstr "%s csoport tagjai"
#. TRANS: Client error displayed when users try to block themselves.
#: actions/apiblockcreate.php:104
msgid "You cannot block yourself!"
@ -745,7 +763,7 @@ msgstr "Nincs jogosultságod."
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
#: actions/deletenotice.php:177 actions/disfavor.php:74
#: actions/emailsettings.php:275 actions/favor.php:75 actions/geocode.php:55
#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
#: actions/groupblock.php:66 actions/grouplogo.php:312
#: actions/groupunblock.php:65 actions/imsettings.php:230
#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
@ -781,7 +799,7 @@ msgstr ""
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
#: actions/designadminpanel.php:104 actions/editapplication.php:144
#: actions/emailsettings.php:294 actions/grouplogo.php:322
#: actions/emailsettings.php:316 actions/grouplogo.php:322
#: actions/imsettings.php:245 actions/newapplication.php:125
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
#: actions/smssettings.php:277 lib/designsettings.php:321
@ -850,7 +868,7 @@ msgstr "Jelszó"
#. TRANS: Button label to cancel an IM address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127
#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
#: actions/imsettings.php:131 actions/smssettings.php:137
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
@ -926,7 +944,8 @@ msgstr "Nem törölheted más felhasználók állapotait."
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/deletenotice.php:61 actions/shownotice.php:92
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
#: actions/shownotice.php:92
msgid "No such notice."
msgstr "Nincs ilyen hír."
@ -942,7 +961,10 @@ msgstr "Nem ismételheted meg a saját híredet."
msgid "Already repeated that notice."
msgstr "Már megismételted azt a hírt."
#: actions/apistatusesshow.php:117
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
#: actions/atompubshowsubscription.php:118
#: actions/atompubsubscriptionfeed.php:109
#, fuzzy
msgid "HTTP method not supported."
msgstr "Az API-metódus nem található."
@ -962,16 +984,16 @@ msgstr "Állapot törölve."
msgid "No status with that ID found."
msgstr "Nem található ilyen azonosítójú állapot."
#: actions/apistatusesshow.php:227
#: actions/apistatusesshow.php:223
msgid "Can only delete using the Atom format."
msgstr ""
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
#: actions/apistatusesshow.php:234 actions/deletenotice.php:78
#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
msgid "Can't delete this notice."
msgstr ""
#: actions/apistatusesshow.php:247
#: actions/apistatusesshow.php:243
#, fuzzy, php-format
msgid "Deleted notice %d"
msgstr "Hír törlése"
@ -1095,34 +1117,58 @@ msgstr "Hírek %s címkével"
msgid "Updates tagged with %1$s on %2$s!"
msgstr ""
#: actions/apitimelineuser.php:300
#. TRANS: Client error displayed trying to add a notice to another user's timeline.
#: actions/apitimelineuser.php:297
#, fuzzy
msgid "Only the user can add to their own timeline."
msgstr "Csak a felhasználó láthatja a saját postaládáját."
#: actions/apitimelineuser.php:306
msgid "Only accept AtomPub for atom feeds."
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:304
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
#: actions/apitimelineuser.php:316
#: actions/apitimelineuser.php:310
msgid "Atom post must not be empty."
msgstr ""
#: actions/apitimelineuser.php:315
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
#: actions/atompubmembershipfeed.php:228
#: actions/atompubsubscriptionfeed.php:233
msgid "Atom post must be an Atom entry."
msgstr ""
#: actions/apitimelineuser.php:325
msgid "Can only handle post activities."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
#: actions/apitimelineuser.php:332
msgid "Can only handle POST activities."
msgstr ""
#: actions/apitimelineuser.php:334
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
#: actions/apitimelineuser.php:343
#, php-format
msgid "Cannot handle activity object type \"%s\""
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#: actions/apitimelineuser.php:392
#. TRANS: Client error displayed when posting a notice without content through the API.
#: actions/apitimelineuser.php:376
#, fuzzy, php-format
msgid "No content for notice %d."
msgstr "Keressünk a hírek tartalmában"
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:404
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr ""
#: actions/apitimelineuser.php:423
#: actions/apitimelineuser.php:435
#, php-format
msgid "AtomPub post with unknown attention URI %s"
msgstr ""
@ -1138,6 +1184,145 @@ msgstr "Az API-metódus fejlesztés alatt áll."
msgid "User not found."
msgstr "Az API-metódus nem található."
#: actions/atompubfavoritefeed.php:70
#, fuzzy
msgid "No such profile"
msgstr "Nincs ilyen profil."
#: actions/atompubfavoritefeed.php:145
#, php-format
msgid "Notices %s has favorited to on %s"
msgstr ""
#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
msgid "Can't add someone else's subscription"
msgstr ""
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
#: actions/atompubfavoritefeed.php:239
msgid "Can only handle Favorite activities."
msgstr ""
#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
#, fuzzy
msgid "Can only fave notices."
msgstr "Keressünk a hírek tartalmában"
#: actions/atompubfavoritefeed.php:256
#, fuzzy
msgid "Unknown note."
msgstr "Ismeretlen művelet"
#: actions/atompubfavoritefeed.php:263
#, fuzzy
msgid "Already a favorite."
msgstr "Hozzáadás a kedvencekhez"
#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
msgid "No such profile."
msgstr "Nincs ilyen profil."
#: actions/atompubmembershipfeed.php:144
#, fuzzy, php-format
msgid "%s group memberships"
msgstr "%s csoport tagjai"
#: actions/atompubmembershipfeed.php:147
#, fuzzy, php-format
msgid "Groups %s is a member of on %s"
msgstr "A legtöbb tagból álló csoportok"
#: actions/atompubmembershipfeed.php:217
msgid "Can't add someone else's membership"
msgstr ""
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
#: actions/atompubmembershipfeed.php:241
msgid "Can only handle Join activities."
msgstr ""
#: actions/atompubmembershipfeed.php:256
#, fuzzy
msgid "Unknown group."
msgstr "Ismeretlen művelet"
#: actions/atompubmembershipfeed.php:263
#, fuzzy
msgid "Already a member."
msgstr "Összes tag"
#: actions/atompubmembershipfeed.php:270
msgid "Blocked by admin."
msgstr ""
#: actions/atompubshowfavorite.php:89
#, fuzzy
msgid "No such favorite."
msgstr "Nincs ilyen fájl."
#: actions/atompubshowfavorite.php:151
#, fuzzy
msgid "Can't delete someone else's favorite"
msgstr "Nem sikerült törölni a kedvencet."
#: actions/atompubshowmembership.php:81
#, fuzzy
msgid "No such group"
msgstr "Nincs ilyen csoport."
#: actions/atompubshowmembership.php:90
#, fuzzy
msgid "Not a member"
msgstr "Összes tag"
#: actions/atompubshowmembership.php:115
#, fuzzy
msgid "Method not supported"
msgstr "Az API-metódus nem található."
#: actions/atompubshowmembership.php:150
msgid "Can't delete someone else's membership"
msgstr ""
#: actions/atompubshowsubscription.php:72
#: actions/atompubshowsubscription.php:81
#: actions/atompubsubscriptionfeed.php:74
#, fuzzy, php-format
msgid "No such profile id: %d"
msgstr "Nincs ilyen profil."
#: actions/atompubshowsubscription.php:90
#, fuzzy, php-format
msgid "Profile %d not subscribed to profile %d"
msgstr "Senkinek sem iratkoztál fel a híreire."
#: actions/atompubshowsubscription.php:154
msgid "Can't delete someone else's subscription"
msgstr ""
#: actions/atompubsubscriptionfeed.php:150
#, fuzzy, php-format
msgid "People %s has subscribed to on %s"
msgstr "Senki sem követ figyelemmel."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
#: actions/atompubsubscriptionfeed.php:246
msgid "Can only handle Follow activities."
msgstr ""
#: actions/atompubsubscriptionfeed.php:253
msgid "Can only follow people."
msgstr ""
#: actions/atompubsubscriptionfeed.php:262
#, fuzzy, php-format
msgid "Unknown profile %s"
msgstr "Ismeretlen fájltípus"
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@ -1424,8 +1609,8 @@ msgstr "Ez a cím már meg van erősítve."
#. TRANS: Server error thrown when user profile settings could not be updated.
#. TRANS: Server error thrown on database error updating SMS preferences.
#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/confirmaddress.php:118 actions/emailsettings.php:337
#: actions/emailsettings.php:486 actions/imsettings.php:283
#: actions/confirmaddress.php:118 actions/emailsettings.php:359
#: actions/emailsettings.php:508 actions/imsettings.php:283
#: actions/imsettings.php:442 actions/othersettings.php:184
#: actions/profilesettings.php:326 actions/smssettings.php:308
#: actions/smssettings.php:464
@ -1951,12 +2136,12 @@ msgstr "Beállíthatod, milyen email-eket kapj a(z) %%site.name%% webhelyről."
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
#: actions/emailsettings.php:106 actions/emailsettings.php:132
#: actions/emailsettings.php:107 actions/emailsettings.php:133
msgid "Email address"
msgstr "Email-cím"
#. TRANS: Form note in e-mail settings form.
#: actions/emailsettings.php:112
#: actions/emailsettings.php:113
msgid "Current confirmed email address."
msgstr "A jelenleg megerősített e-mail cím."
@ -1965,14 +2150,14 @@ msgstr "A jelenleg megerősített e-mail cím."
#. TRANS: Button label to remove a confirmed IM address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
#: actions/emailsettings.php:115 actions/emailsettings.php:162
#: actions/emailsettings.php:116 actions/emailsettings.php:183
#: actions/imsettings.php:116 actions/smssettings.php:124
#: actions/smssettings.php:180
msgctxt "BUTTON"
msgid "Remove"
msgstr "Eltávolítás"
#: actions/emailsettings.php:122
#: actions/emailsettings.php:123
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@ -1986,14 +2171,14 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
#: actions/emailsettings.php:139
#: actions/emailsettings.php:140
msgid "Email address, like \"UserName@example.org\""
msgstr "E-mail cím, például „FelhasználóNév@example.org”"
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
#. TRANS: Button label for adding an IM address in IM settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
#: actions/emailsettings.php:143 actions/imsettings.php:151
#: actions/emailsettings.php:144 actions/imsettings.php:151
#: actions/smssettings.php:162
msgctxt "BUTTON"
msgid "Add"
@ -2001,112 +2186,119 @@ msgstr "Hozzáadás"
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
#: actions/emailsettings.php:151 actions/smssettings.php:171
#: actions/emailsettings.php:152 actions/smssettings.php:171
msgid "Incoming email"
msgstr "Bejövő email"
#. TRANS: Checkbox label in e-mail preferences form.
#: actions/emailsettings.php:158
msgid "I want to post notices by email."
msgstr "Szeretnék email segítségével közzétenni."
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
#: actions/emailsettings.php:159 actions/smssettings.php:178
#: actions/emailsettings.php:180 actions/smssettings.php:178
msgid "Send email to this address to post new notices."
msgstr "Erre a címre küldj emailt új hír közzétételéhez."
#. TRANS: Instructions for incoming e-mail address input form.
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
#: actions/emailsettings.php:168 actions/smssettings.php:186
#: actions/emailsettings.php:189 actions/smssettings.php:186
msgid "Make a new email address for posting to; cancels the old one."
msgstr ""
#. TRANS: Instructions for incoming e-mail address input form.
#: actions/emailsettings.php:193
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
#: actions/emailsettings.php:172 actions/smssettings.php:189
#: actions/emailsettings.php:199 actions/smssettings.php:189
msgctxt "BUTTON"
msgid "New"
msgstr "Új"
#. TRANS: Form legend for e-mail preferences form.
#: actions/emailsettings.php:178
#: actions/emailsettings.php:208
msgid "Email preferences"
msgstr "E-mail beállítások"
#. TRANS: Checkbox label in e-mail preferences form.
#: actions/emailsettings.php:186
#: actions/emailsettings.php:216
msgid "Send me notices of new subscriptions through email."
msgstr "Kapjak email-t, ha valaki feliratkozott a híreimre."
#. TRANS: Checkbox label in e-mail preferences form.
#: actions/emailsettings.php:192
#: actions/emailsettings.php:222
msgid "Send me email when someone adds my notice as a favorite."
msgstr ""
"Kapjak emailt róla, ha valaki kedvenceként jelöl meg egy általam küldött "
"hírt."
#. TRANS: Checkbox label in e-mail preferences form.
#: actions/emailsettings.php:199
#: actions/emailsettings.php:229
msgid "Send me email when someone sends me a private message."
msgstr "Kapjak emailt róla, ha valaki privát üzenetet küld nekem."
#. TRANS: Checkbox label in e-mail preferences form.
#: actions/emailsettings.php:205
#: actions/emailsettings.php:235
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr "Kapjak emailt róla, ha valaki \"@-választ\" küld nekem."
#. TRANS: Checkbox label in e-mail preferences form.
#: actions/emailsettings.php:211
#: actions/emailsettings.php:241
msgid "Allow friends to nudge me and send me an email."
msgstr "Megengedem a barátaimnak, hogy megbökjenek és emailt küldjenek nekem."
#. TRANS: Checkbox label in e-mail preferences form.
#: actions/emailsettings.php:218
msgid "I want to post notices by email."
msgstr "Szeretnék email segítségével közzétenni."
#. TRANS: Checkbox label in e-mail preferences form.
#: actions/emailsettings.php:225
#: actions/emailsettings.php:247
msgid "Publish a MicroID for my email address."
msgstr "MicroID közzététele az e-mail címemhez."
#. TRANS: Confirmation message for successful e-mail preferences save.
#: actions/emailsettings.php:346
#: actions/emailsettings.php:368
msgid "Email preferences saved."
msgstr "E-mail beállítások elmentve."
#. TRANS: Message given saving e-mail address without having provided one.
#: actions/emailsettings.php:366
#: actions/emailsettings.php:388
msgid "No email address."
msgstr "Nincs e-mail cím."
#. TRANS: Message given saving e-mail address that cannot be normalised.
#: actions/emailsettings.php:374
#: actions/emailsettings.php:396
msgid "Cannot normalize that email address"
msgstr "Nem sikerült normalizálni az e-mail címet"
#. TRANS: Message given saving e-mail address that not valid.
#: actions/emailsettings.php:379 actions/register.php:212
#: actions/emailsettings.php:401 actions/register.php:212
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr "Érvénytelen email cím."
#. TRANS: Message given saving e-mail address that is already set.
#: actions/emailsettings.php:383
#: actions/emailsettings.php:405
msgid "That is already your email address."
msgstr "Jelenleg is ez az e-mail címed."
#. TRANS: Message given saving e-mail address that is already set for another user.
#: actions/emailsettings.php:387
#: actions/emailsettings.php:409
msgid "That email address already belongs to another user."
msgstr "Ez az e-mail cím egy másik felhasználóhoz tartozik."
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
#. TRANS: Server error thrown on database error adding IM confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
#: actions/emailsettings.php:404 actions/imsettings.php:351
#: actions/emailsettings.php:426 actions/imsettings.php:351
#: actions/smssettings.php:373
msgid "Couldn't insert confirmation code."
msgstr "Nem sikerült beilleszteni a megerősítő kódot."
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
#: actions/emailsettings.php:411
#: actions/emailsettings.php:433
msgid ""
"A confirmation code was sent to the email address you added. Check your "
"inbox (and spam box!) for the code and instructions on how to use it."
@ -2118,56 +2310,56 @@ msgstr ""
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
#. TRANS: Message given canceling IM address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
#: actions/emailsettings.php:432 actions/imsettings.php:386
#: actions/emailsettings.php:454 actions/imsettings.php:386
#: actions/smssettings.php:408
msgid "No pending confirmation to cancel."
msgstr "Nincs várakozó megerősítés, amit vissza lehetne vonni."
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
#: actions/emailsettings.php:437
#: actions/emailsettings.php:459
msgid "That is the wrong email address."
msgstr ""
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
#: actions/emailsettings.php:446 actions/smssettings.php:422
#: actions/emailsettings.php:468 actions/smssettings.php:422
msgid "Couldn't delete email confirmation."
msgstr "Nem sikerült törölni az e-mail cím megerősítését."
#. TRANS: Message given after successfully canceling e-mail address confirmation.
#: actions/emailsettings.php:451
#: actions/emailsettings.php:473
msgid "Email confirmation cancelled."
msgstr ""
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
#: actions/emailsettings.php:471
#: actions/emailsettings.php:493
msgid "That is not your email address."
msgstr "Ez nem a te e-mail címed."
#. TRANS: Message given after successfully removing a registered e-mail address.
#: actions/emailsettings.php:492
#: actions/emailsettings.php:514
msgid "The email address was removed."
msgstr ""
#: actions/emailsettings.php:506 actions/smssettings.php:568
#: actions/emailsettings.php:528 actions/smssettings.php:568
msgid "No incoming email address."
msgstr "Nincs bejövő e-mail cím."
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
#: actions/emailsettings.php:517 actions/emailsettings.php:541
#: actions/emailsettings.php:540 actions/emailsettings.php:565
#: actions/smssettings.php:578 actions/smssettings.php:602
msgid "Couldn't update user record."
msgstr "Nem sikerült frissíteni a felhasználó rekordját."
#. TRANS: Message given after successfully removing an incoming e-mail address.
#: actions/emailsettings.php:521 actions/smssettings.php:581
#: actions/emailsettings.php:544 actions/smssettings.php:581
msgid "Incoming email address removed."
msgstr "A bejövő email címet eltávolítottuk."
#. TRANS: Message given after successfully adding an incoming e-mail address.
#: actions/emailsettings.php:545 actions/smssettings.php:605
#: actions/emailsettings.php:569 actions/smssettings.php:605
msgid "New incoming email address added."
msgstr "Új bejövő e-mail cím hozzáadva."
@ -5255,7 +5447,7 @@ msgstr ""
#. TRANS: Server error displayed when updating a subscription fails with a database error.
#. TRANS: Exception thrown when a subscription could not be stored on the server.
#: actions/subedit.php:89 classes/Subscription.php:136
#: actions/subedit.php:89 classes/Subscription.php:141
msgid "Could not save subscription."
msgstr ""
@ -5263,10 +5455,6 @@ msgstr ""
msgid "This action only accepts POST requests."
msgstr ""
#: actions/subscribe.php:107
msgid "No such profile."
msgstr "Nincs ilyen profil."
#: actions/subscribe.php:117
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
@ -5328,13 +5516,6 @@ msgid ""
"%) and be the first?"
msgstr ""
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr ""
#. TRANS: Header for subscriptions overview for a user (not first page).
#. TRANS: %1$s is a user nickname, %2$d is the page number.
#: actions/subscriptions.php:55
@ -5378,13 +5559,18 @@ msgstr ""
msgid "%s is not listening to anyone."
msgstr "%s nem követ figyelemmel senkit."
#: actions/subscriptions.php:178
#, fuzzy, php-format
msgid "Subscription feed for %s (Atom)"
msgstr "%s Atom hírcsatornája"
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
#: actions/subscriptions.php:226
#: actions/subscriptions.php:242
msgid "Jabber"
msgstr "Jabber"
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
#: actions/subscriptions.php:241
#: actions/subscriptions.php:257
msgid "SMS"
msgstr "SMS"
@ -5765,13 +5951,13 @@ msgid "Author(s)"
msgstr "Szerző(k)"
#. TRANS: Activity title when marking a notice as favorite.
#: classes/Fave.php:148 lib/favorform.php:143
#: classes/Fave.php:151 lib/favorform.php:143
msgid "Favor"
msgstr "Kedvelem"
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
#: classes/Fave.php:151
#: classes/Fave.php:154
#, fuzzy, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr "%s (@%s) az általad küldött hírt hozzáadta a kedvenceihez"
@ -5825,42 +6011,42 @@ msgid "Invalid filename."
msgstr ""
#. TRANS: Exception thrown when joining a group fails.
#: classes/Group_member.php:42
#: classes/Group_member.php:51
msgid "Group join failed."
msgstr ""
#. TRANS: Exception thrown when trying to leave a group the user is not a member of.
#: classes/Group_member.php:55
#: classes/Group_member.php:64
msgid "Not part of group."
msgstr ""
#. TRANS: Exception thrown when trying to leave a group fails.
#: classes/Group_member.php:63
#: classes/Group_member.php:72
msgid "Group leave failed."
msgstr ""
#. TRANS: Exception thrown providing an invalid profile ID.
#. TRANS: %s is the invalid profile ID.
#: classes/Group_member.php:76
#: classes/Group_member.php:85
#, php-format
msgid "Profile ID %s is invalid."
msgstr ""
#. TRANS: Exception thrown providing an invalid group ID.
#. TRANS: %s is the invalid group ID.
#: classes/Group_member.php:89
#: classes/Group_member.php:98
#, fuzzy, php-format
msgid "Group ID %s is invalid."
msgstr "Hiba a felhasználó mentésekor; érvénytelen."
#. TRANS: Activity title.
#: classes/Group_member.php:113 lib/joinform.php:114
#: classes/Group_member.php:147 lib/joinform.php:114
msgid "Join"
msgstr "Csatlakozzunk"
#. TRANS: Success message for subscribe to group attempt through OStatus.
#. TRANS: %1$s is the member name, %2$s is the subscribed group's name.
#: classes/Group_member.php:117
#: classes/Group_member.php:151
#, php-format
msgid "%1$s has joined group %2$s."
msgstr ""
@ -5888,12 +6074,12 @@ msgid "You are banned from sending direct messages."
msgstr ""
#. TRANS: Message given when a message could not be stored on the server.
#: classes/Message.php:62
#: classes/Message.php:69
msgid "Could not insert message."
msgstr ""
#. TRANS: Message given when a message could not be updated on the server.
#: classes/Message.php:73
#: classes/Message.php:80
msgid "Could not update message with new URI."
msgstr ""
@ -5911,59 +6097,59 @@ msgid "Database error inserting hashtag: %s"
msgstr ""
#. TRANS: Client exception thrown if a notice contains too many characters.
#: classes/Notice.php:265
#: classes/Notice.php:270
msgid "Problem saving notice. Too long."
msgstr ""
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
#: classes/Notice.php:270
#: classes/Notice.php:275
msgid "Problem saving notice. Unknown user."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
#: classes/Notice.php:276
#: classes/Notice.php:281
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
#: classes/Notice.php:283
#: classes/Notice.php:288
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post while being banned.
#: classes/Notice.php:291
#: classes/Notice.php:296
msgid "You are banned from posting notices on this site."
msgstr ""
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
#: classes/Notice.php:358 classes/Notice.php:385
#: classes/Notice.php:363 classes/Notice.php:390
msgid "Problem saving notice."
msgstr "Probléma merült fel a hír mentése közben."
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
#: classes/Notice.php:909
#: classes/Notice.php:913
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
#: classes/Notice.php:1008
#: classes/Notice.php:1012
msgid "Problem saving group inbox."
msgstr ""
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
#: classes/Notice.php:1122
#: classes/Notice.php:1126
#, fuzzy, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr "Nem sikerült menteni a profilt."
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1853
#: classes/Notice.php:1645
#, php-format
msgid "RT @%1$s %2$s"
msgstr ""
@ -5977,14 +6163,14 @@ msgstr "%1$s - %2$s"
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
#: classes/Profile.php:845
#: classes/Profile.php:798
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
#: classes/Profile.php:854
#: classes/Profile.php:807
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@ -6000,48 +6186,48 @@ msgid "Unable to save tag."
msgstr ""
#. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
#: classes/Subscription.php:75 lib/oauthstore.php:482
#: classes/Subscription.php:77 lib/oauthstore.php:482
msgid "You have been banned from subscribing."
msgstr "Eltiltottak a feliratkozástól."
#. TRANS: Exception thrown when trying to subscribe while already subscribed.
#: classes/Subscription.php:80
#: classes/Subscription.php:82
msgid "Already subscribed!"
msgstr "Már feliratkoztál!"
#. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user.
#: classes/Subscription.php:85
#: classes/Subscription.php:87
msgid "User has blocked you."
msgstr "A felhasználó blokkolt."
#. TRANS: Exception thrown when trying to unsibscribe without a subscription.
#: classes/Subscription.php:171
#: classes/Subscription.php:176
msgid "Not subscribed!"
msgstr "Nem követed figyelemmel!"
#. TRANS: Exception thrown when trying to unsubscribe a user from themselves.
#: classes/Subscription.php:178
#: classes/Subscription.php:183
msgid "Could not delete self-subscription."
msgstr ""
#. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server.
#: classes/Subscription.php:206
#: classes/Subscription.php:211
msgid "Could not delete subscription OMB token."
msgstr ""
#. TRANS: Exception thrown when a subscription could not be deleted on the server.
#: classes/Subscription.php:218
#: classes/Subscription.php:223
msgid "Could not delete subscription."
msgstr ""
#. TRANS: Activity tile when subscribing to another person.
#: classes/Subscription.php:255
#: classes/Subscription.php:265
msgid "Follow"
msgstr ""
#. TRANS: Notification given when one person starts following another.
#. TRANS: %1$s is the subscriber, %2$s is the subscribed.
#: classes/Subscription.php:258
#: classes/Subscription.php:268
#, fuzzy, php-format
msgid "%1$s is now following %2$s."
msgstr "%1$s feliratkozott a híreidre a %2$s webhelyen."
@ -6405,10 +6591,15 @@ msgid "Before"
msgstr "Előtte"
#. TRANS: Client exception thrown when a feed instance is a DOMDocument.
#: lib/activity.php:120
#: lib/activity.php:125
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
#: lib/activity.php:360
#, fuzzy
msgid "Post"
msgstr "Fénykép"
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
msgid "Can't handle remote content yet."
@ -7908,17 +8099,17 @@ msgid "Send"
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
#: lib/nickname.php:145
#: lib/nickname.php:163
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr "A becenév csak kisbetűket és számokat tartalmazhat, szóközök nélkül."
#. TRANS: Validation error in form for registration, profile and group settings, etc.
#: lib/nickname.php:158
#: lib/nickname.php:176
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
#: lib/nickname.php:171
#: lib/nickname.php:189
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@ -8159,7 +8350,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr ""
#. TRANS: Client error on action trying to visit a non-existing page.
#: lib/router.php:938
#: lib/router.php:957
#, fuzzy
msgid "Page not found."
msgstr "Az API-metódus nem található."
@ -8408,17 +8599,17 @@ msgid "Moderator"
msgstr "Moderátor"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1276
#: lib/util.php:1306
msgid "a few seconds ago"
msgstr "pár másodperce"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1279
#: lib/util.php:1309
msgid "about a minute ago"
msgstr "körülbelül egy perce"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1283
#: lib/util.php:1313
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@ -8426,12 +8617,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1286
#: lib/util.php:1316
msgid "about an hour ago"
msgstr "körülbelül egy órája"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1290
#: lib/util.php:1320
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@ -8439,12 +8630,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1293
#: lib/util.php:1323
msgid "about a day ago"
msgstr "körülbelül egy napja"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1297
#: lib/util.php:1327
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@ -8452,12 +8643,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1300
#: lib/util.php:1330
msgid "about a month ago"
msgstr "körülbelül egy hónapja"
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1304
#: lib/util.php:1334
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@ -8465,7 +8656,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1307
#: lib/util.php:1337
msgid "about a year ago"
msgstr "körülbelül egy éve"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-30 20:16+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -81,11 +81,11 @@ msgstr ""
#. TRANS: Button text to save user settings in user admin panel.
#. TRANS: Button label in the "Edit application" form.
#. TRANS: Button text on profile design page to save settings.
#: actions/accessadminpanel.php:193 actions/emailsettings.php:232
#: actions/accessadminpanel.php:193 actions/emailsettings.php:254
#: actions/imsettings.php:187 actions/othersettings.php:134
#: actions/pathsadminpanel.php:512 actions/profilesettings.php:201
#: actions/sitenoticeadminpanel.php:197 actions/smssettings.php:209
#: actions/subscriptions.php:246 actions/useradminpanel.php:298
#: actions/subscriptions.php:262 actions/useradminpanel.php:298
#: lib/applicationeditform.php:355 lib/designsettings.php:270
#: lib/groupeditform.php:207
msgctxt "BUTTON"
@ -362,20 +362,38 @@ msgstr ""
msgid "Could not update your design."
msgstr ""
#: actions/apiatomservice.php:85
#: actions/apiatomservice.php:86
msgid "Main"
msgstr ""
#. TRANS: Message is used as link title. %s is a user nickname.
#. TRANS: Title in atom group notice feed. %s is a group name.
#. TRANS: Title in atom user notice feed. %s is a user name.
#: actions/apiatomservice.php:92 actions/grouprss.php:139
#: actions/apiatomservice.php:93 actions/grouprss.php:139
#: actions/userrss.php:94 lib/atomgroupnoticefeed.php:63
#: lib/atomusernoticefeed.php:68
#, php-format
msgid "%s timeline"
msgstr ""
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
#: actions/apiatomservice.php:103 actions/atompubsubscriptionfeed.php:147
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr ""
#: actions/apiatomservice.php:113 actions/atompubfavoritefeed.php:142
#, php-format
msgid "%s favorites"
msgstr ""
#: actions/apiatomservice.php:123
#, php-format
msgid "%s memberships"
msgstr ""
#. TRANS: Client error displayed when users try to block themselves.
#: actions/apiblockcreate.php:104
msgid "You cannot block yourself!"
@ -722,7 +740,7 @@ msgstr ""
#. TRANS: Form validation error in API OAuth authorisation because of an invalid session token.
#: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280
#: actions/deletenotice.php:177 actions/disfavor.php:74
#: actions/emailsettings.php:275 actions/favor.php:75 actions/geocode.php:55
#: actions/emailsettings.php:297 actions/favor.php:75 actions/geocode.php:55
#: actions/groupblock.php:66 actions/grouplogo.php:312
#: actions/groupunblock.php:65 actions/imsettings.php:230
#: actions/invite.php:59 actions/login.php:137 actions/makeadmin.php:66
@ -758,7 +776,7 @@ msgstr ""
#. TRANS: Unknown form validation error in design settings form.
#: actions/apioauthauthorize.php:294 actions/avatarsettings.php:294
#: actions/designadminpanel.php:104 actions/editapplication.php:144
#: actions/emailsettings.php:294 actions/grouplogo.php:322
#: actions/emailsettings.php:316 actions/grouplogo.php:322
#: actions/imsettings.php:245 actions/newapplication.php:125
#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:44
#: actions/smssettings.php:277 lib/designsettings.php:321
@ -826,7 +844,7 @@ msgstr ""
#. TRANS: Button label to cancel an IM address confirmation procedure.
#. TRANS: Button label to cancel a SMS address confirmation procedure.
#. TRANS: Button label in the "Edit application" form.
#: actions/apioauthauthorize.php:478 actions/emailsettings.php:127
#: actions/apioauthauthorize.php:478 actions/emailsettings.php:128
#: actions/imsettings.php:131 actions/smssettings.php:137
#: lib/applicationeditform.php:351
msgctxt "BUTTON"
@ -899,7 +917,8 @@ msgstr ""
#. TRANS: Client error displayed trying to display redents of a non-exiting notice.
#. TRANS: Error message displayed trying to delete a non-existing notice.
#: actions/apistatusesretweet.php:74 actions/apistatusesretweets.php:70
#: actions/deletenotice.php:61 actions/shownotice.php:92
#: actions/atompubshowfavorite.php:82 actions/deletenotice.php:61
#: actions/shownotice.php:92
msgid "No such notice."
msgstr ""
@ -915,7 +934,10 @@ msgstr ""
msgid "Already repeated that notice."
msgstr ""
#: actions/apistatusesshow.php:117
#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104
#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116
#: actions/atompubshowsubscription.php:118
#: actions/atompubsubscriptionfeed.php:109
msgid "HTTP method not supported."
msgstr ""
@ -934,16 +956,16 @@ msgstr ""
msgid "No status with that ID found."
msgstr ""
#: actions/apistatusesshow.php:227
#: actions/apistatusesshow.php:223
msgid "Can only delete using the Atom format."
msgstr ""
#. TRANS: Error message displayed trying to delete a notice that was not made by the current user.
#: actions/apistatusesshow.php:234 actions/deletenotice.php:78
#: actions/apistatusesshow.php:230 actions/deletenotice.php:78
msgid "Can't delete this notice."
msgstr ""
#: actions/apistatusesshow.php:247
#: actions/apistatusesshow.php:243
#, php-format
msgid "Deleted notice %d"
msgstr ""
@ -1064,33 +1086,57 @@ msgstr ""
msgid "Updates tagged with %1$s on %2$s!"
msgstr ""
#: actions/apitimelineuser.php:300
#. TRANS: Client error displayed trying to add a notice to another user's timeline.
#: actions/apitimelineuser.php:297
msgid "Only the user can add to their own timeline."
msgstr ""
#: actions/apitimelineuser.php:306
msgid "Only accept AtomPub for atom feeds."
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:304
msgid "Only accept AtomPub for Atom feeds."
msgstr ""
#: actions/apitimelineuser.php:316
#: actions/apitimelineuser.php:310
msgid "Atom post must not be empty."
msgstr ""
#: actions/apitimelineuser.php:315
msgid "Atom post must be well-formed XML."
msgstr ""
#. TRANS: Client error displayed when not using an Atom entry.
#: actions/apitimelineuser.php:321 actions/atompubfavoritefeed.php:226
#: actions/atompubmembershipfeed.php:228
#: actions/atompubsubscriptionfeed.php:233
msgid "Atom post must be an Atom entry."
msgstr ""
#: actions/apitimelineuser.php:325
msgid "Can only handle post activities."
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
#: actions/apitimelineuser.php:332
msgid "Can only handle POST activities."
msgstr ""
#: actions/apitimelineuser.php:334
#. TRANS: Client error displayed when using an unsupported activity object type.
#. TRANS: %s is the unsupported activity object type.
#: actions/apitimelineuser.php:343
#, php-format
msgid "Cannot handle activity object type \"%s\""
msgid "Cannot handle activity object type \"%s\"."
msgstr ""
#: actions/apitimelineuser.php:392
#. TRANS: Client error displayed when posting a notice without content through the API.
#: actions/apitimelineuser.php:376
#, php-format
msgid "No content for notice %d."
msgstr ""
#. TRANS: Client error displayed when using another format than AtomPub.
#: actions/apitimelineuser.php:404
#, php-format
msgid "Notice with URI \"%s\" already exists."
msgstr ""
#: actions/apitimelineuser.php:423
#: actions/apitimelineuser.php:435
#, php-format
msgid "AtomPub post with unknown attention URI %s"
msgstr ""
@ -1105,6 +1151,134 @@ msgstr ""
msgid "User not found."
msgstr ""
#: actions/atompubfavoritefeed.php:70
msgid "No such profile"
msgstr ""
#: actions/atompubfavoritefeed.php:145
#, php-format
msgid "Notices %s has favorited to on %s"
msgstr ""
#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222
msgid "Can't add someone else's subscription"
msgstr ""
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
#: actions/atompubfavoritefeed.php:239
msgid "Can only handle Favorite activities."
msgstr ""
#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248
msgid "Can only fave notices."
msgstr ""
#: actions/atompubfavoritefeed.php:256
msgid "Unknown note."
msgstr ""
#: actions/atompubfavoritefeed.php:263
msgid "Already a favorite."
msgstr ""
#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76
#: actions/atompubshowmembership.php:73 actions/subscribe.php:107
msgid "No such profile."
msgstr ""
#: actions/atompubmembershipfeed.php:144
#, php-format
msgid "%s group memberships"
msgstr ""
#: actions/atompubmembershipfeed.php:147
#, php-format
msgid "Groups %s is a member of on %s"
msgstr ""
#: actions/atompubmembershipfeed.php:217
msgid "Can't add someone else's membership"
msgstr ""
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
#: actions/atompubmembershipfeed.php:241
msgid "Can only handle Join activities."
msgstr ""
#: actions/atompubmembershipfeed.php:256
msgid "Unknown group."
msgstr ""
#: actions/atompubmembershipfeed.php:263
msgid "Already a member."
msgstr ""
#: actions/atompubmembershipfeed.php:270
msgid "Blocked by admin."
msgstr ""
#: actions/atompubshowfavorite.php:89
msgid "No such favorite."
msgstr ""
#: actions/atompubshowfavorite.php:151
msgid "Can't delete someone else's favorite"
msgstr ""
#: actions/atompubshowmembership.php:81
msgid "No such group"
msgstr ""
#: actions/atompubshowmembership.php:90
msgid "Not a member"
msgstr ""
#: actions/atompubshowmembership.php:115
msgid "Method not supported"
msgstr ""
#: actions/atompubshowmembership.php:150
msgid "Can't delete someone else's membership"
msgstr ""
#: actions/atompubshowsubscription.php:72
#: actions/atompubshowsubscription.php:81
#: actions/atompubsubscriptionfeed.php:74
#, php-format
msgid "No such profile id: %d"
msgstr ""
#: actions/atompubshowsubscription.php:90
#, php-format
msgid "Profile %d not subscribed to profile %d"
msgstr ""
#: actions/atompubshowsubscription.php:154
msgid "Can't delete someone else's subscription"
msgstr ""
#: actions/atompubsubscriptionfeed.php:150
#, php-format
msgid "People %s has subscribed to on %s"
msgstr ""
#. TRANS: Client error displayed when not using the POST verb.
#. TRANS: Do not translate POST.
#: actions/atompubsubscriptionfeed.php:246
msgid "Can only handle Follow activities."
msgstr ""
#: actions/atompubsubscriptionfeed.php:253
msgid "Can only follow people."
msgstr ""
#: actions/atompubsubscriptionfeed.php:262
#, php-format
msgid "Unknown profile %s"
msgstr ""
#. TRANS: Client error displayed trying to get a non-existing attachment.
#: actions/attachment.php:73
msgid "No such attachment."
@ -1387,8 +1561,8 @@ msgstr ""
#. TRANS: Server error thrown when user profile settings could not be updated.
#. TRANS: Server error thrown on database error updating SMS preferences.
#. TRANS: Server error thrown on database error removing a registered SMS phone number.
#: actions/confirmaddress.php:118 actions/emailsettings.php:337
#: actions/emailsettings.php:486 actions/imsettings.php:283
#: actions/confirmaddress.php:118 actions/emailsettings.php:359
#: actions/emailsettings.php:508 actions/imsettings.php:283
#: actions/imsettings.php:442 actions/othersettings.php:184
#: actions/profilesettings.php:326 actions/smssettings.php:308
#: actions/smssettings.php:464
@ -1899,12 +2073,12 @@ msgstr ""
#. TRANS: Form legend for e-mail settings form.
#. TRANS: Field label for e-mail address input in e-mail settings form.
#: actions/emailsettings.php:106 actions/emailsettings.php:132
#: actions/emailsettings.php:107 actions/emailsettings.php:133
msgid "Email address"
msgstr ""
#. TRANS: Form note in e-mail settings form.
#: actions/emailsettings.php:112
#: actions/emailsettings.php:113
msgid "Current confirmed email address."
msgstr ""
@ -1913,14 +2087,14 @@ msgstr ""
#. TRANS: Button label to remove a confirmed IM address.
#. TRANS: Button label to remove a confirmed SMS address.
#. TRANS: Button label for removing a set sender SMS e-mail address to post notices from.
#: actions/emailsettings.php:115 actions/emailsettings.php:162
#: actions/emailsettings.php:116 actions/emailsettings.php:183
#: actions/imsettings.php:116 actions/smssettings.php:124
#: actions/smssettings.php:180
msgctxt "BUTTON"
msgid "Remove"
msgstr ""
#: actions/emailsettings.php:122
#: actions/emailsettings.php:123
msgid ""
"Awaiting confirmation on this address. Check your inbox (and spam box!) for "
"a message with further instructions."
@ -1931,14 +2105,14 @@ msgstr ""
#. TRANS: use in examples by http://www.rfc-editor.org/rfc/rfc2606.txt.
#. TRANS: Any other domain may be owned by a legitimate person or
#. TRANS: organization.
#: actions/emailsettings.php:139
#: actions/emailsettings.php:140
msgid "Email address, like \"UserName@example.org\""
msgstr ""
#. TRANS: Button label for adding an e-mail address in e-mail settings form.
#. TRANS: Button label for adding an IM address in IM settings form.
#. TRANS: Button label for adding a SMS phone number in SMS settings form.
#: actions/emailsettings.php:143 actions/imsettings.php:151
#: actions/emailsettings.php:144 actions/imsettings.php:151
#: actions/smssettings.php:162
msgctxt "BUTTON"
msgid "Add"
@ -1946,110 +2120,117 @@ msgstr ""
#. TRANS: Form legend for incoming e-mail settings form.
#. TRANS: Form legend for incoming SMS settings form.
#: actions/emailsettings.php:151 actions/smssettings.php:171
#: actions/emailsettings.php:152 actions/smssettings.php:171
msgid "Incoming email"
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
#: actions/emailsettings.php:158
msgid "I want to post notices by email."
msgstr ""
#. TRANS: Form instructions for incoming e-mail form in e-mail settings.
#. TRANS: Form instructions for incoming SMS e-mail address form in SMS settings.
#: actions/emailsettings.php:159 actions/smssettings.php:178
#: actions/emailsettings.php:180 actions/smssettings.php:178
msgid "Send email to this address to post new notices."
msgstr ""
#. TRANS: Instructions for incoming e-mail address input form.
#. TRANS: Instructions for incoming e-mail address input form, when an address has already been assigned.
#. TRANS: Instructions for incoming SMS e-mail address input form.
#: actions/emailsettings.php:168 actions/smssettings.php:186
#: actions/emailsettings.php:189 actions/smssettings.php:186
msgid "Make a new email address for posting to; cancels the old one."
msgstr ""
#. TRANS: Instructions for incoming e-mail address input form.
#: actions/emailsettings.php:193
msgid ""
"To send notices via email, we need to create a unique email address for you "
"on this server:"
msgstr ""
#. TRANS: Button label for adding an e-mail address to send notices from.
#. TRANS: Button label for adding an SMS e-mail address to send notices from.
#: actions/emailsettings.php:172 actions/smssettings.php:189
#: actions/emailsettings.php:199 actions/smssettings.php:189
msgctxt "BUTTON"
msgid "New"
msgstr ""
#. TRANS: Form legend for e-mail preferences form.
#: actions/emailsettings.php:178
#: actions/emailsettings.php:208
msgid "Email preferences"
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
#: actions/emailsettings.php:186
#: actions/emailsettings.php:216
msgid "Send me notices of new subscriptions through email."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
#: actions/emailsettings.php:192
#: actions/emailsettings.php:222
msgid "Send me email when someone adds my notice as a favorite."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
#: actions/emailsettings.php:199
#: actions/emailsettings.php:229
msgid "Send me email when someone sends me a private message."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
#: actions/emailsettings.php:205
#: actions/emailsettings.php:235
msgid "Send me email when someone sends me an \"@-reply\"."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
#: actions/emailsettings.php:211
#: actions/emailsettings.php:241
msgid "Allow friends to nudge me and send me an email."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
#: actions/emailsettings.php:218
msgid "I want to post notices by email."
msgstr ""
#. TRANS: Checkbox label in e-mail preferences form.
#: actions/emailsettings.php:225
#: actions/emailsettings.php:247
msgid "Publish a MicroID for my email address."
msgstr ""
#. TRANS: Confirmation message for successful e-mail preferences save.
#: actions/emailsettings.php:346
#: actions/emailsettings.php:368
msgid "Email preferences saved."
msgstr ""
#. TRANS: Message given saving e-mail address without having provided one.
#: actions/emailsettings.php:366
#: actions/emailsettings.php:388
msgid "No email address."
msgstr ""
#. TRANS: Message given saving e-mail address that cannot be normalised.
#: actions/emailsettings.php:374
#: actions/emailsettings.php:396
msgid "Cannot normalize that email address"
msgstr ""
#. TRANS: Message given saving e-mail address that not valid.
#: actions/emailsettings.php:379 actions/register.php:212
#: actions/emailsettings.php:401 actions/register.php:212
#: actions/siteadminpanel.php:144
msgid "Not a valid email address."
msgstr ""
#. TRANS: Message given saving e-mail address that is already set.
#: actions/emailsettings.php:383
#: actions/emailsettings.php:405
msgid "That is already your email address."
msgstr ""
#. TRANS: Message given saving e-mail address that is already set for another user.
#: actions/emailsettings.php:387
#: actions/emailsettings.php:409
msgid "That email address already belongs to another user."
msgstr ""
#. TRANS: Server error thrown on database error adding e-mail confirmation code.
#. TRANS: Server error thrown on database error adding IM confirmation code.
#. TRANS: Server error thrown on database error adding SMS confirmation code.
#: actions/emailsettings.php:404 actions/imsettings.php:351
#: actions/emailsettings.php:426 actions/imsettings.php:351
#: actions/smssettings.php:373
msgid "Couldn't insert confirmation code."
msgstr ""
#. TRANS: Message given saving valid e-mail address that is to be confirmed.
#: actions/emailsettings.php:411
#: actions/emailsettings.php:433
msgid ""
"A confirmation code was sent to the email address you added. Check your "
"inbox (and spam box!) for the code and instructions on how to use it."
@ -2058,56 +2239,56 @@ msgstr ""
#. TRANS: Message given canceling e-mail address confirmation that is not pending.
#. TRANS: Message given canceling IM address confirmation that is not pending.
#. TRANS: Message given canceling SMS phone number confirmation that is not pending.
#: actions/emailsettings.php:432 actions/imsettings.php:386
#: actions/emailsettings.php:454 actions/imsettings.php:386
#: actions/smssettings.php:408
msgid "No pending confirmation to cancel."
msgstr ""
#. TRANS: Message given canceling e-mail address confirmation for the wrong e-mail address.
#: actions/emailsettings.php:437
#: actions/emailsettings.php:459
msgid "That is the wrong email address."
msgstr ""
#. TRANS: Server error thrown on database error canceling e-mail address confirmation.
#. TRANS: Server error thrown on database error canceling SMS phone number confirmation.
#: actions/emailsettings.php:446 actions/smssettings.php:422
#: actions/emailsettings.php:468 actions/smssettings.php:422
msgid "Couldn't delete email confirmation."
msgstr ""
#. TRANS: Message given after successfully canceling e-mail address confirmation.
#: actions/emailsettings.php:451
#: actions/emailsettings.php:473
msgid "Email confirmation cancelled."
msgstr ""
#. TRANS: Message given trying to remove an e-mail address that is not
#. TRANS: registered for the active user.
#: actions/emailsettings.php:471
#: actions/emailsettings.php:493
msgid "That is not your email address."
msgstr ""
#. TRANS: Message given after successfully removing a registered e-mail address.
#: actions/emailsettings.php:492
#: actions/emailsettings.php:514
msgid "The email address was removed."
msgstr ""
#: actions/emailsettings.php:506 actions/smssettings.php:568
#: actions/emailsettings.php:528 actions/smssettings.php:568
msgid "No incoming email address."
msgstr ""
#. TRANS: Server error thrown on database error removing incoming e-mail address.
#. TRANS: Server error thrown on database error adding incoming e-mail address.
#: actions/emailsettings.php:517 actions/emailsettings.php:541
#: actions/emailsettings.php:540 actions/emailsettings.php:565
#: actions/smssettings.php:578 actions/smssettings.php:602
msgid "Couldn't update user record."
msgstr ""
#. TRANS: Message given after successfully removing an incoming e-mail address.
#: actions/emailsettings.php:521 actions/smssettings.php:581
#: actions/emailsettings.php:544 actions/smssettings.php:581
msgid "Incoming email address removed."
msgstr ""
#. TRANS: Message given after successfully adding an incoming e-mail address.
#: actions/emailsettings.php:545 actions/smssettings.php:605
#: actions/emailsettings.php:569 actions/smssettings.php:605
msgid "New incoming email address added."
msgstr ""
@ -5111,7 +5292,7 @@ msgstr ""
#. TRANS: Server error displayed when updating a subscription fails with a database error.
#. TRANS: Exception thrown when a subscription could not be stored on the server.
#: actions/subedit.php:89 classes/Subscription.php:136
#: actions/subedit.php:89 classes/Subscription.php:141
msgid "Could not save subscription."
msgstr ""
@ -5119,10 +5300,6 @@ msgstr ""
msgid "This action only accepts POST requests."
msgstr ""
#: actions/subscribe.php:107
msgid "No such profile."
msgstr ""
#: actions/subscribe.php:117
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
@ -5184,13 +5361,6 @@ msgid ""
"%) and be the first?"
msgstr ""
#. TRANS: Header for subscriptions overview for a user (first page).
#. TRANS: %s is a user nickname.
#: actions/subscriptions.php:51
#, php-format
msgid "%s subscriptions"
msgstr ""
#. TRANS: Header for subscriptions overview for a user (not first page).
#. TRANS: %1$s is a user nickname, %2$d is the page number.
#: actions/subscriptions.php:55
@ -5234,13 +5404,18 @@ msgstr ""
msgid "%s is not listening to anyone."
msgstr ""
#: actions/subscriptions.php:178
#, php-format
msgid "Subscription feed for %s (Atom)"
msgstr ""
#. TRANS: Checkbox label for enabling Jabber messages for a profile in a subscriptions list.
#: actions/subscriptions.php:226
#: actions/subscriptions.php:242
msgid "Jabber"
msgstr ""
#. TRANS: Checkbox label for enabling SMS messages for a profile in a subscriptions list.
#: actions/subscriptions.php:241
#: actions/subscriptions.php:257
msgid "SMS"
msgstr ""
@ -5619,13 +5794,13 @@ msgid "Author(s)"
msgstr ""
#. TRANS: Activity title when marking a notice as favorite.
#: classes/Fave.php:148 lib/favorform.php:143
#: classes/Fave.php:151 lib/favorform.php:143
msgid "Favor"
msgstr ""
#. TRANS: Ntofication given when a user marks a notice as favorite.
#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI.
#: classes/Fave.php:151
#: classes/Fave.php:154
#, php-format
msgid "%1$s marked notice %2$s as a favorite."
msgstr ""
@ -5679,42 +5854,42 @@ msgid "Invalid filename."
msgstr ""
#. TRANS: Exception thrown when joining a group fails.
#: classes/Group_member.php:42
#: classes/Group_member.php:51
msgid "Group join failed."
msgstr ""
#. TRANS: Exception thrown when trying to leave a group the user is not a member of.
#: classes/Group_member.php:55
#: classes/Group_member.php:64
msgid "Not part of group."
msgstr ""
#. TRANS: Exception thrown when trying to leave a group fails.
#: classes/Group_member.php:63
#: classes/Group_member.php:72
msgid "Group leave failed."
msgstr ""
#. TRANS: Exception thrown providing an invalid profile ID.
#. TRANS: %s is the invalid profile ID.
#: classes/Group_member.php:76
#: classes/Group_member.php:85
#, php-format
msgid "Profile ID %s is invalid."
msgstr ""
#. TRANS: Exception thrown providing an invalid group ID.
#. TRANS: %s is the invalid group ID.
#: classes/Group_member.php:89
#: classes/Group_member.php:98
#, php-format
msgid "Group ID %s is invalid."
msgstr ""
#. TRANS: Activity title.
#: classes/Group_member.php:113 lib/joinform.php:114
#: classes/Group_member.php:147 lib/joinform.php:114
msgid "Join"
msgstr ""
#. TRANS: Success message for subscribe to group attempt through OStatus.
#. TRANS: %1$s is the member name, %2$s is the subscribed group's name.
#: classes/Group_member.php:117
#: classes/Group_member.php:151
#, php-format
msgid "%1$s has joined group %2$s."
msgstr ""
@ -5742,12 +5917,12 @@ msgid "You are banned from sending direct messages."
msgstr ""
#. TRANS: Message given when a message could not be stored on the server.
#: classes/Message.php:62
#: classes/Message.php:69
msgid "Could not insert message."
msgstr ""
#. TRANS: Message given when a message could not be updated on the server.
#: classes/Message.php:73
#: classes/Message.php:80
msgid "Could not update message with new URI."
msgstr ""
@ -5765,59 +5940,59 @@ msgid "Database error inserting hashtag: %s"
msgstr ""
#. TRANS: Client exception thrown if a notice contains too many characters.
#: classes/Notice.php:265
#: classes/Notice.php:270
msgid "Problem saving notice. Too long."
msgstr ""
#. TRANS: Client exception thrown when trying to save a notice for an unknown user.
#: classes/Notice.php:270
#: classes/Notice.php:275
msgid "Problem saving notice. Unknown user."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many notices in a given time frame.
#: classes/Notice.php:276
#: classes/Notice.php:281
msgid ""
"Too many notices too fast; take a breather and post again in a few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post too many duplicate notices in a given time frame.
#: classes/Notice.php:283
#: classes/Notice.php:288
msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes."
msgstr ""
#. TRANS: Client exception thrown when a user tries to post while being banned.
#: classes/Notice.php:291
#: classes/Notice.php:296
msgid "You are banned from posting notices on this site."
msgstr ""
#. TRANS: Server exception thrown when a notice cannot be saved.
#. TRANS: Server exception thrown when a notice cannot be updated.
#: classes/Notice.php:358 classes/Notice.php:385
#: classes/Notice.php:363 classes/Notice.php:390
msgid "Problem saving notice."
msgstr ""
#. TRANS: Server exception thrown when no array is provided to the method saveKnownGroups().
#: classes/Notice.php:909
#: classes/Notice.php:913
msgid "Bad type provided to saveKnownGroups."
msgstr ""
#. TRANS: Server exception thrown when an update for a group inbox fails.
#: classes/Notice.php:1008
#: classes/Notice.php:1012
msgid "Problem saving group inbox."
msgstr ""
#. TRANS: Server exception thrown when a reply cannot be saved.
#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user.
#: classes/Notice.php:1122
#: classes/Notice.php:1126
#, php-format
msgid "Could not save reply for %1$d, %2$d."
msgstr ""
#. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
#. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
#: classes/Notice.php:1853
#: classes/Notice.php:1645
#, php-format
msgid "RT @%1$s %2$s"
msgstr ""
@ -5831,14 +6006,14 @@ msgstr ""
#. TRANS: Exception thrown when trying to revoke an existing role for a user that does not exist.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
#: classes/Profile.php:845
#: classes/Profile.php:798
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; does not exist."
msgstr ""
#. TRANS: Exception thrown when trying to revoke a role for a user with a failing database query.
#. TRANS: %1$s is the role name, %2$s is the user ID (number).
#: classes/Profile.php:854
#: classes/Profile.php:807
#, php-format
msgid "Cannot revoke role \"%1$s\" for user #%2$d; database error."
msgstr ""
@ -5854,48 +6029,48 @@ msgid "Unable to save tag."
msgstr ""
#. TRANS: Exception thrown when trying to subscribe while being banned from subscribing.
#: classes/Subscription.php:75 lib/oauthstore.php:482
#: classes/Subscription.php:77 lib/oauthstore.php:482
msgid "You have been banned from subscribing."
msgstr ""
#. TRANS: Exception thrown when trying to subscribe while already subscribed.
#: classes/Subscription.php:80
#: classes/Subscription.php:82
msgid "Already subscribed!"
msgstr ""
#. TRANS: Exception thrown when trying to subscribe to a user who has blocked the subscribing user.
#: classes/Subscription.php:85
#: classes/Subscription.php:87
msgid "User has blocked you."
msgstr ""
#. TRANS: Exception thrown when trying to unsibscribe without a subscription.
#: classes/Subscription.php:171
#: classes/Subscription.php:176
msgid "Not subscribed!"
msgstr ""
#. TRANS: Exception thrown when trying to unsubscribe a user from themselves.
#: classes/Subscription.php:178
#: classes/Subscription.php:183
msgid "Could not delete self-subscription."
msgstr ""
#. TRANS: Exception thrown when the OMB token for a subscription could not deleted on the server.
#: classes/Subscription.php:206
#: classes/Subscription.php:211
msgid "Could not delete subscription OMB token."
msgstr ""
#. TRANS: Exception thrown when a subscription could not be deleted on the server.
#: classes/Subscription.php:218
#: classes/Subscription.php:223
msgid "Could not delete subscription."
msgstr ""
#. TRANS: Activity tile when subscribing to another person.
#: classes/Subscription.php:255
#: classes/Subscription.php:265
msgid "Follow"
msgstr ""
#. TRANS: Notification given when one person starts following another.
#. TRANS: %1$s is the subscriber, %2$s is the subscribed.
#: classes/Subscription.php:258
#: classes/Subscription.php:268
#, php-format
msgid "%1$s is now following %2$s."
msgstr ""
@ -6259,10 +6434,14 @@ msgid "Before"
msgstr ""
#. TRANS: Client exception thrown when a feed instance is a DOMDocument.
#: lib/activity.php:120
#: lib/activity.php:125
msgid "Expecting a root feed element but got a whole XML document."
msgstr ""
#: lib/activity.php:360
msgid "Post"
msgstr ""
#. TRANS: Client exception thrown when there is no source attribute.
#: lib/activityutils.php:200
msgid "Can't handle remote content yet."
@ -7668,17 +7847,17 @@ msgid "Send"
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
#: lib/nickname.php:145
#: lib/nickname.php:163
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
#: lib/nickname.php:158
#: lib/nickname.php:176
msgid "Nickname cannot be empty."
msgstr ""
#. TRANS: Validation error in form for registration, profile and group settings, etc.
#: lib/nickname.php:171
#: lib/nickname.php:189
#, php-format
msgid "Nickname cannot be more than %d character long."
msgid_plural "Nickname cannot be more than %d characters long."
@ -7919,7 +8098,7 @@ msgid "Revoke the \"%s\" role from this user"
msgstr ""
#. TRANS: Client error on action trying to visit a non-existing page.
#: lib/router.php:938
#: lib/router.php:957
msgid "Page not found."
msgstr ""
@ -8165,17 +8344,17 @@ msgid "Moderator"
msgstr ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1276
#: lib/util.php:1306
msgid "a few seconds ago"
msgstr ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1279
#: lib/util.php:1309
msgid "about a minute ago"
msgstr ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1283
#: lib/util.php:1313
#, php-format
msgid "about one minute ago"
msgid_plural "about %d minutes ago"
@ -8183,12 +8362,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1286
#: lib/util.php:1316
msgid "about an hour ago"
msgstr ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1290
#: lib/util.php:1320
#, php-format
msgid "about one hour ago"
msgid_plural "about %d hours ago"
@ -8196,12 +8375,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1293
#: lib/util.php:1323
msgid "about a day ago"
msgstr ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1297
#: lib/util.php:1327
#, php-format
msgid "about one day ago"
msgid_plural "about %d days ago"
@ -8209,12 +8388,12 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1300
#: lib/util.php:1330
msgid "about a month ago"
msgstr ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1304
#: lib/util.php:1334
#, php-format
msgid "about one month ago"
msgid_plural "about %d months ago"
@ -8222,7 +8401,7 @@ msgstr[0] ""
msgstr[1] ""
#. TRANS: Used in notices to indicate when the notice was made compared to now.
#: lib/util.php:1307
#: lib/util.php:1337
msgid "about a year ago"
msgstr ""

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-29 15:37+0000\n"
"PO-Revision-Date: 2010-11-29 15:40:00+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
"net/wiki/Portal:be-tarask>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-29 16:11:51+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77421); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: be-tarask\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
"Language-Team: Breton <http://translatewiki.net/wiki/Portal:br>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: br\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
"Language-Team: Spanish <http://translatewiki.net/wiki/Portal:es>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: es\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
"Language-Team: French <http://translatewiki.net/wiki/Portal:fr>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
"Language-Team: Galician <http://translatewiki.net/wiki/Portal:gl>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: gl\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"

View File

@ -0,0 +1,30 @@
# Translation of StatusNet - APC to Hebrew (עברית)
# Expored from translatewiki.net
#
# Author: YaronSh
# --
# This file is distributed under the same license as the StatusNet package.
#
msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
"Language-Team: Hebrew <http://translatewiki.net/wiki/Portal:he>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: he\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: APCPlugin.php:115
msgid ""
"Use the <a href=\"http://pecl.php.net/package/apc\">APC</a> variable cache "
"to cache query results."
msgstr ""
"שימוש במטמון המשתנים <a href=\"http://pecl.php.net/package/apc\">APC</a> כדי "
"לשמור תוצאות לשאילתות במטמון."

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
"Language-Team: Interlingua <http://translatewiki.net/wiki/Portal:ia>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
"Language-Team: Indonesian <http://translatewiki.net/wiki/Portal:id>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: id\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
"Language-Team: Macedonian <http://translatewiki.net/wiki/Portal:mk>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
"Language-Team: Norwegian (bokmål) <http://translatewiki.net/wiki/Portal:no>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: no\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
"Language-Team: Dutch <http://translatewiki.net/wiki/Portal:nl>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
"Language-Team: Polish <http://translatewiki.net/wiki/Portal:pl>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pl\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
"Language-Team: Portuguese <http://translatewiki.net/wiki/Portal:pt>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"

View File

@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
"Language-Team: Brazilian Portuguese <http://translatewiki.net/wiki/Portal:pt-"
"br>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt-br\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
"Language-Team: Russian <http://translatewiki.net/wiki/Portal:ru>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
"Language-Team: Tagalog <http://translatewiki.net/wiki/Portal:tl>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
"Language-Team: Ukrainian <http://translatewiki.net/wiki/Portal:uk>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"

View File

@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - APC\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:12+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:29+0000\n"
"Language-Team: Simplified Chinese <http://translatewiki.net/wiki/Portal:zh-"
"hans>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-09 14:34:28+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:22+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hans\n"
"X-Message-Group: #out-statusnet-plugin-apc\n"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-07 20:25+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -10,14 +10,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-29 15:37+0000\n"
"PO-Revision-Date: 2010-11-29 15:39:57+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:23+0000\n"
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
"net/wiki/Portal:be-tarask>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-07 21:21:09+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77421); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: be-tarask\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-29 15:37+0000\n"
"PO-Revision-Date: 2010-11-29 15:39:57+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:25+0000\n"
"Language-Team: Breton <http://translatewiki.net/wiki/Portal:br>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-07 21:21:09+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77421); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: br\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"

View File

@ -0,0 +1,102 @@
# Translation of StatusNet - Adsense to Catalan (Català)
# Expored from translatewiki.net
#
# Author: Toniher
# --
# This file is distributed under the same license as the StatusNet package.
#
msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:25+0000\n"
"Language-Team: Catalan <http://translatewiki.net/wiki/Portal:ca>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ca\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. TRANS: Menu item title/tooltip
#: AdsensePlugin.php:194
msgid "AdSense configuration"
msgstr "Configuració de l'AdSense"
#. TRANS: Menu item for site administration
#: AdsensePlugin.php:196
msgid "AdSense"
msgstr "AdSense"
#: AdsensePlugin.php:209
msgid "Plugin to add Google AdSense to StatusNet sites."
msgstr ""
"Connector per afegir el Google AdSense a llocs web basats en StatusNet."
#: adsenseadminpanel.php:52
msgctxt "TITLE"
msgid "AdSense"
msgstr "AdSense"
#: adsenseadminpanel.php:62
msgid "AdSense settings for this StatusNet site"
msgstr ""
#: adsenseadminpanel.php:164
msgid "Client ID"
msgstr ""
#: adsenseadminpanel.php:165
msgid "Google client ID"
msgstr ""
#: adsenseadminpanel.php:170
msgid "Ad script URL"
msgstr ""
#: adsenseadminpanel.php:171
msgid "Script URL (advanced)"
msgstr ""
#: adsenseadminpanel.php:176
msgid "Medium rectangle"
msgstr ""
#: adsenseadminpanel.php:177
msgid "Medium rectangle slot code"
msgstr ""
#: adsenseadminpanel.php:182
msgid "Rectangle"
msgstr ""
#: adsenseadminpanel.php:183
msgid "Rectangle slot code"
msgstr ""
#: adsenseadminpanel.php:188
msgid "Leaderboard"
msgstr ""
#: adsenseadminpanel.php:189
msgid "Leaderboard slot code"
msgstr ""
#: adsenseadminpanel.php:194
msgid "Skyscraper"
msgstr ""
#: adsenseadminpanel.php:195
msgid "Wide skyscraper slot code"
msgstr ""
#: adsenseadminpanel.php:208
msgid "Save"
msgstr "Desa"
#: adsenseadminpanel.php:208
msgid "Save AdSense settings"
msgstr "Desa els paràmetres de l'AdSense"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-29 15:37+0000\n"
"PO-Revision-Date: 2010-11-29 15:39:57+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
"Language-Team: German <http://translatewiki.net/wiki/Portal:de>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-07 21:21:09+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77421); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-29 15:37+0000\n"
"PO-Revision-Date: 2010-11-29 15:39:57+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
"Language-Team: Spanish <http://translatewiki.net/wiki/Portal:es>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-07 21:21:09+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77421); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: es\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"

View File

@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-29 15:37+0000\n"
"PO-Revision-Date: 2010-11-29 15:39:57+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
"Language-Team: French <http://translatewiki.net/wiki/Portal:fr>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-07 21:21:09+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77421); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-07 20:25+0000\n"
"PO-Revision-Date: 2010-11-07 20:27:50+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
"Language-Team: Galician <http://translatewiki.net/wiki/Portal:gl>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-30 23:43:40+0000\n"
"X-Generator: MediaWiki 1.17alpha (r76266); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: gl\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-29 15:37+0000\n"
"PO-Revision-Date: 2010-11-29 15:39:57+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
"Language-Team: Interlingua <http://translatewiki.net/wiki/Portal:ia>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-07 21:21:09+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77421); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-29 15:37+0000\n"
"PO-Revision-Date: 2010-11-29 15:39:57+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
"Language-Team: Italian <http://translatewiki.net/wiki/Portal:it>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-07 21:21:09+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77421); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: it\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-07 20:25+0000\n"
"PO-Revision-Date: 2010-11-07 20:27:50+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
"Language-Team: Georgian <http://translatewiki.net/wiki/Portal:ka>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-30 23:43:40+0000\n"
"X-Generator: MediaWiki 1.17alpha (r76266); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ka\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-29 15:37+0000\n"
"PO-Revision-Date: 2010-11-29 15:39:57+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
"Language-Team: Macedonian <http://translatewiki.net/wiki/Portal:mk>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-07 21:21:09+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77421); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-29 15:37+0000\n"
"PO-Revision-Date: 2010-11-29 15:39:57+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
"Language-Team: Dutch <http://translatewiki.net/wiki/Portal:nl>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-07 21:21:09+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77421); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"

View File

@ -0,0 +1,101 @@
# Translation of StatusNet - Adsense to Portuguese (Português)
# Expored from translatewiki.net
#
# Author: Waldir
# --
# This file is distributed under the same license as the StatusNet package.
#
msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
"Language-Team: Portuguese <http://translatewiki.net/wiki/Portal:pt>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. TRANS: Menu item title/tooltip
#: AdsensePlugin.php:194
msgid "AdSense configuration"
msgstr "Configuração do AdSense"
#. TRANS: Menu item for site administration
#: AdsensePlugin.php:196
msgid "AdSense"
msgstr "AdSense"
#: AdsensePlugin.php:209
msgid "Plugin to add Google AdSense to StatusNet sites."
msgstr "Plugin para adicionar Google AdSense aos sites StatusNet."
#: adsenseadminpanel.php:52
msgctxt "TITLE"
msgid "AdSense"
msgstr "AdSense"
#: adsenseadminpanel.php:62
msgid "AdSense settings for this StatusNet site"
msgstr "Configurações do AdSense para este site StatusNet"
#: adsenseadminpanel.php:164
msgid "Client ID"
msgstr "Identificação do cliente"
#: adsenseadminpanel.php:165
msgid "Google client ID"
msgstr "ID de cliente Google"
#: adsenseadminpanel.php:170
msgid "Ad script URL"
msgstr "URL do script do anúncio"
#: adsenseadminpanel.php:171
msgid "Script URL (advanced)"
msgstr "URL do script (avançado)"
#: adsenseadminpanel.php:176
msgid "Medium rectangle"
msgstr "Retângulo médio"
#: adsenseadminpanel.php:177
msgid "Medium rectangle slot code"
msgstr ""
#: adsenseadminpanel.php:182
msgid "Rectangle"
msgstr "Retângulo"
#: adsenseadminpanel.php:183
msgid "Rectangle slot code"
msgstr ""
#: adsenseadminpanel.php:188
msgid "Leaderboard"
msgstr ""
#: adsenseadminpanel.php:189
msgid "Leaderboard slot code"
msgstr ""
#: adsenseadminpanel.php:194
msgid "Skyscraper"
msgstr ""
#: adsenseadminpanel.php:195
msgid "Wide skyscraper slot code"
msgstr ""
#: adsenseadminpanel.php:208
msgid "Save"
msgstr "Gravar"
#: adsenseadminpanel.php:208
msgid "Save AdSense settings"
msgstr "Gravar as configurações do AdSense"

View File

@ -10,14 +10,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-29 15:37+0000\n"
"PO-Revision-Date: 2010-11-29 15:39:58+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:26+0000\n"
"Language-Team: Brazilian Portuguese <http://translatewiki.net/wiki/Portal:pt-"
"br>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-07 21:21:09+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77421); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt-br\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"

View File

@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-29 15:37+0000\n"
"PO-Revision-Date: 2010-11-29 15:39:58+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:27+0000\n"
"Language-Team: Russian <http://translatewiki.net/wiki/Portal:ru>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-07 21:21:09+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77421); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-07 20:25+0000\n"
"PO-Revision-Date: 2010-11-07 20:27:50+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:27+0000\n"
"Language-Team: Swedish <http://translatewiki.net/wiki/Portal:sv>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-30 23:43:40+0000\n"
"X-Generator: MediaWiki 1.17alpha (r76266); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: sv\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-29 15:37+0000\n"
"PO-Revision-Date: 2010-11-29 15:39:58+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:27+0000\n"
"Language-Team: Tagalog <http://translatewiki.net/wiki/Portal:tl>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-07 21:21:09+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77421); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-30 20:16+0000\n"
"PO-Revision-Date: 2010-11-30 20:18:28+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:27+0000\n"
"Language-Team: Turkish <http://translatewiki.net/wiki/Portal:tr>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-29 19:38:20+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77503); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tr\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-29 15:37+0000\n"
"PO-Revision-Date: 2010-11-29 15:39:58+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:27+0000\n"
"Language-Team: Ukrainian <http://translatewiki.net/wiki/Portal:uk>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-07 21:21:09+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77421); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"

View File

@ -10,14 +10,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - Adsense\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-29 15:37+0000\n"
"PO-Revision-Date: 2010-11-29 15:39:58+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:27+0000\n"
"Language-Team: Simplified Chinese <http://translatewiki.net/wiki/Portal:zh-"
"hans>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-07 21:21:09+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77421); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-30 20:40:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hans\n"
"X-Message-Group: #out-statusnet-plugin-adsense\n"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -10,14 +10,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-29 15:37+0000\n"
"PO-Revision-Date: 2010-11-29 15:39:59+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
"net/wiki/Portal:be-tarask>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-29 16:11:51+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77421); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: be-tarask\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
@ -91,7 +91,7 @@ msgstr ""
#. TRANS: Client error.
#: anondisfavor.php:82
msgid "This notice is not a favorite!"
msgstr "Гэтае паведамленьне ня зьяўляецца ўлюблёным!"
msgstr "Гэтае паведамленьне не зьяўляецца ўлюблёным!"
#. TRANS: Server error.
#: anondisfavor.php:91

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:10+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
"Language-Team: Breton <http://translatewiki.net/wiki/Portal:br>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-23 18:56:48+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: br\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-29 15:37+0000\n"
"PO-Revision-Date: 2010-11-29 15:39:59+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
"Language-Team: German <http://translatewiki.net/wiki/Portal:de>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-29 16:11:51+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77421); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"

View File

@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
"Language-Team: Spanish <http://translatewiki.net/wiki/Portal:es>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-23 18:56:48+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: es\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
"Language-Team: French <http://translatewiki.net/wiki/Portal:fr>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-23 18:56:48+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
"Language-Team: Galician <http://translatewiki.net/wiki/Portal:gl>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-23 18:56:48+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: gl\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
"Language-Team: Interlingua <http://translatewiki.net/wiki/Portal:ia>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-23 18:56:48+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
"Language-Team: Macedonian <http://translatewiki.net/wiki/Portal:mk>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-23 18:56:48+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"

View File

@ -10,13 +10,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
"Language-Team: Dutch <http://translatewiki.net/wiki/Portal:nl>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-23 18:56:48+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"

View File

@ -0,0 +1,102 @@
# Translation of StatusNet - AnonymousFave to Portuguese (Português)
# Expored from translatewiki.net
#
# Author: Waldir
# --
# This file is distributed under the same license as the StatusNet package.
#
msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
"Language-Team: Portuguese <http://translatewiki.net/wiki/Portal:pt>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. TRANS: Label for tally for number of times a notice was favored.
#: AnonymousFavePlugin.php:207
msgid "Favored"
msgstr "Marcada como favorita"
#. TRANS: Server exception.
#: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251
msgid "Couldn't create anonymous user session."
msgstr "Não foi possível criar uma sessão de utilizador anónimo."
#. TRANS: Plugin description.
#: AnonymousFavePlugin.php:326
msgid "Allow anonymous users to favorite notices."
msgstr "Permitir a utilizadores anónimos marcar mensagens como favoritas."
#. TRANS: Client error.
#: anonfavor.php:60
msgid ""
"Could not favor notice! Please make sure your browser has cookies enabled."
msgstr ""
"Não foi possível marcar a mensagem como favorito. Por favor, assegure-se de "
"que os cookies estão ativados no seu navegador."
#. TRANS: Client error.
#: anonfavor.php:71 anondisfavor.php:72
msgid "There was a problem with your session token. Try again, please."
msgstr ""
"Ocorreu um problema com seu identificador de sessão. Tente novamente, por "
"favor."
#. TRANS: Client error.
#: anonfavor.php:78
msgid "This notice is already a favorite!"
msgstr "Esta mensagem já é uma das suas favoritas!"
#. TRANS: Server error.
#: anonfavor.php:85
msgid "Could not create favorite."
msgstr "Não foi possível criar o favorito."
#. TRANS: Title.
#: anonfavor.php:95
msgid "Disfavor favorite"
msgstr "Retirar das favoritas"
#. TRANS: Server exception.
#. TRANS: %d is the notice ID (number).
#: Fave_tally.php:155 Fave_tally.php:184
#, php-format
msgid "Couldn't update favorite tally for notice ID %d."
msgstr ""
#. TRANS: Server exception.
#. TRANS: %d is the notice ID (number).
#: Fave_tally.php:215
#, php-format
msgid "Couldn't create favorite tally for notice ID %d."
msgstr ""
#. TRANS: Client error.
#: anondisfavor.php:61
msgid ""
"Could not disfavor notice! Please make sure your browser has cookies enabled."
msgstr ""
#. TRANS: Client error.
#: anondisfavor.php:82
msgid "This notice is not a favorite!"
msgstr ""
#. TRANS: Server error.
#: anondisfavor.php:91
msgid "Could not delete favorite."
msgstr ""
#. TRANS: Title.
#: anondisfavor.php:101
msgid "Add to favorites"
msgstr ""

View File

@ -0,0 +1,102 @@
# Translation of StatusNet - AnonymousFave to Russian (Русский)
# Expored from translatewiki.net
#
# Author: Lockal
# Author: MaxSem
# --
# This file is distributed under the same license as the StatusNet package.
#
msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
"Language-Team: Russian <http://translatewiki.net/wiki/Portal:ru>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\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: Label for tally for number of times a notice was favored.
#: AnonymousFavePlugin.php:207
msgid "Favored"
msgstr "Понравилось"
#. TRANS: Server exception.
#: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251
msgid "Couldn't create anonymous user session."
msgstr "Не удаётся создать сеанс анонимного пользователя."
#. TRANS: Plugin description.
#: AnonymousFavePlugin.php:326
msgid "Allow anonymous users to favorite notices."
msgstr "Позволяет анонимным пользователям добавлять записи в число любимых."
#. TRANS: Client error.
#: anonfavor.php:60
msgid ""
"Could not favor notice! Please make sure your browser has cookies enabled."
msgstr ""
"Ошибка добавления записи в число любимых! Пожалуйста, убедитесь, что cookies "
"включены в вашем браузере."
#. TRANS: Client error.
#: anonfavor.php:71 anondisfavor.php:72
msgid "There was a problem with your session token. Try again, please."
msgstr ""
#. TRANS: Client error.
#: anonfavor.php:78
msgid "This notice is already a favorite!"
msgstr ""
#. TRANS: Server error.
#: anonfavor.php:85
msgid "Could not create favorite."
msgstr ""
#. TRANS: Title.
#: anonfavor.php:95
msgid "Disfavor favorite"
msgstr ""
#. TRANS: Server exception.
#. TRANS: %d is the notice ID (number).
#: Fave_tally.php:155 Fave_tally.php:184
#, php-format
msgid "Couldn't update favorite tally for notice ID %d."
msgstr ""
#. TRANS: Server exception.
#. TRANS: %d is the notice ID (number).
#: Fave_tally.php:215
#, php-format
msgid "Couldn't create favorite tally for notice ID %d."
msgstr ""
#. TRANS: Client error.
#: anondisfavor.php:61
msgid ""
"Could not disfavor notice! Please make sure your browser has cookies enabled."
msgstr ""
#. TRANS: Client error.
#: anondisfavor.php:82
msgid "This notice is not a favorite!"
msgstr ""
#. TRANS: Server error.
#: anondisfavor.php:91
msgid "Could not delete favorite."
msgstr ""
#. TRANS: Title.
#: anondisfavor.php:101
msgid "Add to favorites"
msgstr "Добавить в избранное"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
"Language-Team: Tagalog <http://translatewiki.net/wiki/Portal:tl>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-23 18:56:48+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tl\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"

View File

@ -9,13 +9,13 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AnonymousFave\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"PO-Revision-Date: 2010-10-27 23:46:11+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:28+0000\n"
"Language-Team: Ukrainian <http://translatewiki.net/wiki/Portal:uk>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-23 18:56:48+0000\n"
"X-Generator: MediaWiki 1.17alpha (r75590); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:21+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: #out-statusnet-plugin-anonymousfave\n"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-10-27 23:43+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -9,14 +9,14 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet - AutoSandbox\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-11-29 15:37+0000\n"
"PO-Revision-Date: 2010-11-29 15:40:20+0000\n"
"POT-Creation-Date: 2010-12-16 15:08+0000\n"
"PO-Revision-Date: 2010-12-16 15:11:30+0000\n"
"Language-Team: Belarusian (Taraškievica orthography) <http://translatewiki."
"net/wiki/Portal:be-tarask>\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POT-Import-Date: 2010-10-29 16:11:52+0000\n"
"X-Generator: MediaWiki 1.17alpha (r77421); Translate extension (2010-09-17)\n"
"X-POT-Import-Date: 2010-11-29 19:38:24+0000\n"
"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: be-tarask\n"
"X-Message-Group: #out-statusnet-plugin-autosandbox\n"

Some files were not shown because too many files have changed in this diff Show More